Link to home
Start Free TrialLog in
Avatar of coerrace
coerrace

asked on

A problem occurred attempting to delete row sql

I have this error when we tried to attempt to delete rows from a SQL databse table. The problem is bad people entered to register and that rows are messages the problem is there are around 200,000 trash messages we need to delete but we can´t with SQL Management Studio GUI. HEre is the map of the SQL database:

Man database called: "foro" a table called "dbo.messages". The problem is we have mixed the trash rows with good rows and we only know the GUI of SQL to select the rows to delete and that´s all but the error message appear. Now like you see in 200,000 trash rows each one by one is a nightmare.
   Anyone know how from the GUI selecting the rows to delete use that information maybe to delete in other way maybe in command of SQL? And what would be exact the command to delete that rows?
We have Windows 2008, SQL Server 2008.
Thank you
Avatar of Pavel Celba
Pavel Celba
Flag of Czechia image

And what's the difference between selecting rows one by one for deletion in GUI and deleting them one by one directly?

To post the error message would also help...

You have to find a pattern for deletion and use that pattern in WHERE clause of the DELETE command:

USE foro
DELETE FROM dbo.messages WHERE SomeConditionDerivedFromThePattern

The crerate the pattern shoud be relatively easy if you answer the question "How do I recognise records for deletion in GUI ?"

Of course, you have to create a backup before above commands...

Another way is to restore the database to the previous state where trash rows are not mixed with good rows yet.
Avatar of coerrace
coerrace

ASKER

What could be the command exact to copy just the first 111 rows from one table to other table in the same database? I think we can solve like that because there is no pattern.
Thank you
You may try

SELECT TOP 111 * INTO NewTable FROM ExistingTable

BUT not all sql engines allow TOP without ORDER BY clause so you will probably need something more:

SELECT TOP 111 * INTO NewTable FROM ExistingTable ORDER BY SomeExistingColumn

BUT now the "SomeExistingColumn" must ensure the rows for deletion will be at the top... Do you have some Timestamp in data?
Another solution is to add one more column to your table and mark the first 111 records in this column. Then you may simply use this new column for data extraction, deletion etc. After the cleanup will be done you remove this column.
This command
SELECT TOP 111 * INTO messages FROM messages_bad

Open in new window

messages_bad is the source where are the trash rows.

Say:

Msg 2714, Level 16, State 6, Line 1
There is already an object named 'messages' in the database.

Thank you
ASKER CERTIFIED SOLUTION
Avatar of Pavel Celba
Pavel Celba
Flag of Czechia image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Worked Excellent. Now in the new table is all the 11 rows and the 200,000 trash has gone.Thank you
Please remember TOP 111 does not necessarily mean the first 111 rows from the table because the physical row order is not guaranteed in SQL standard and you should always include ORDER BY clause.
Yes I know but copied all in right and perfect position each row. I just needed to add the set primary key and that´s all.
Thank you
You are welcome!