USE [SRO_VT_SHARD]
GO
DELETE * FROM _TimedJob
WHERE CharID ='¡joao!'
Printable View
USE [SRO_VT_SHARD]
GO
DELETE * FROM _TimedJob
WHERE CharID ='¡joao!'
CharID .. not means ur id
Go to _Char and found ur character .. there a row calls CharID replace it with ijoao! and it will work
You need to get your CharID from _Char, It's a number not your char name.
NVM dragonzee beat me.
I get this error once i do this Msg 102, Level 15, State 1, Line 1
Incorrect syntax near '*'.
I did what u ask USE [SRO_VT_SHARD]
GO
DELETE * FROM _TimedJob
WHERE CharID ='13668' Still Gives me that error
Msg 102, Level 15, State 1, Line 1
Incorrect syntax near '*'.
use this
USE [SRO_VT_SHARD]
GO
DELETE FROM dbo._TimedJob
WHERE CharID = 13668
means?
Query