- Joined
- Dec 7, 2006
- Messages
- 250
- Reaction score
- 2
trying to figure this out lately.
for example:
DB: lol
TABLE: USERDATA
i wanna move the contents of USERDATA to
DB: lol2
TABLE: USERDATA
by just copy and pasting rows i noticed it cant be done.
the strSkill strItem etc are encoded so it aint gonna work.
theres a query to do it just in 1 click.
like SELECT FROM * USERDATA INTO USERDATA.
i really dont know, never tryed this. and googling doesnt help me at al.
thanks
thanks twostars
i got it
really a usefull code

for example:
DB: lol
TABLE: USERDATA
i wanna move the contents of USERDATA to
DB: lol2
TABLE: USERDATA
by just copy and pasting rows i noticed it cant be done.
the strSkill strItem etc are encoded so it aint gonna work.
theres a query to do it just in 1 click.
like SELECT FROM * USERDATA INTO USERDATA.
i really dont know, never tryed this. and googling doesnt help me at al.
thanks

thanks twostars

i got it
Code:
INSERT INTO [KN_online]..USERDATA SELECT * FROM [OURKO]..USERDATA


Last edited by a moderator: