is there anyway u can

Mu online season 21 - grand opening

excluded

Golden Oldie
Golden Oldie
May 31, 2006
555
4
105
delete mobs from your tbl_mongen in ur sql cos when i try to delete then it comes up with a message saying :
key column information is insufficient or incorrect. to many rows were affected by update .

is says this even if theres only 1 row or 50 rows
any suggestions its frying my skull lol
ty for help in advance
 

lordatrox

Dedicated Member
Dedicated Member
Aug 28, 2008
164
0
42
you can if u use an access to SQL DB converter. convert the db table into an access table and alter anything on there, then re upload it.

+ using access is alot easier than SQL when editing.

/Torni
 
Upvote 0

Liandrin2

Golden Oldie
Golden Oldie
Loyal Member
Jan 14, 2004
890
6
105
Should be able to delete it using SQL statements. Worth learning stuff like this when using sql.

You will want to use something like

DELETE FROM TBL_MONGEN WHERE FLD_NAME = Oma
 
Upvote 0

Liandrin2

Golden Oldie
Golden Oldie
Loyal Member
Jan 14, 2004
890
6
105
It would yeh, but I'm not sure what the database looks like so what I posted was just an example.

All I was trying to say is that you should be able to delete whatever using some form of SQL statement.
 
Upvote 0

Lone

LOMCN Veteran
Veteran
Mar 15, 2007
278
12
44
I had that error a few times and it usally shows up when the entries get doubled up.


the Delete line above does work, but as you said it would only delete the oma mobs.

if you want to delete specific rows use

DELETE FROM TBL_MONGEN WHERE FLD_ID = Insert Fld_ID Here

e.g

DELETE FROM TBL_MONGEN WHERE FLD_NAME = 1234


so just find the rows you want to delete - make sure you order by fld ID so you can see where the problem resides.

if you have a double entry - make sure you take a copy of one of the row you want to keep - when you delete the row it will remove Both rows due to them having the same Fld_ID, So take a copy, run the line and then paste the individual line back in.

if you have multiple lines affected and you end up with trouble using the SQL command, you can do as suggested and Export the Table in to Access Format, at which point you can then play around with it without the majority of restrictions (you can also then copy it from Access to Excel and run any excel commands you know to tidy it up) as long as you copy it back into Access and then Import it to SQL from an Access Source it should all work ;) Give me PM if you run in to problems.
 
Upvote 0