Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[help] search function

Templar FlyFF <3
Joined
Sep 25, 2008
Messages
307
Reaction score
21
Is there a search function in MSSQL studio management express? it's kind of hard going through 2500+ strings of characters :/

I know about the queries, I just want to know if anyone found such stuff.
 
Junior Spellweaver
Joined
Dec 24, 2008
Messages
122
Reaction score
43
The only way that I know to do it is by scripting:
Code:
SELECT * FROM [ACCOUNT_DBF].[dbo].[ACCOUNT_TBL]
WHERE account = 'Account Name'
GO
or:
Code:
SELECT * FROM [CHARACTER_01_DBF].[dbo].[CHARACTER_TBL]
WHERE m_szName = 'Character Name'
GO
But I dont think there is a search feature
 
Back
Top