Drop Table
Support Forum for database administrators and web based access to important newsgroups related to databasesHello, I have a database called articles I want to delete all articles from a subgroup e.g. DVD If I am in the enterprisemanager what steps do I have to take to do this thanks in advance Paul
Post Follow-up to this messageI would do it in Query Analyzser (from EM you can select Tools, SQL Query Analyzer) Something like this: BEGIN TRAN DELETE FROM articles WHERE subgroup = 'DVD' SELECT * FROM articles ROLLBACK TRAN Once you've verified that it deleted what you expected then change the ROLLBACK to COMMIT. Make sure you have a backup. -- David Portas SQL Server MVP --
Post Follow-up to this messageHello David, thank you for your answer it is exactly what I need kind regards Paul "David Portas" < REMOVE_BEFORE_REPLYI NG_dportas@acm.org> schreef in bericht news:1127237303.004486.198620@g44g2000cwa.googlegroups.com... >I would do it in Query Analyzser (from EM you can select Tools, SQL > Query Analyzer) > > Something like this: > > BEGIN TRAN > > DELETE > FROM articles > WHERE subgroup = 'DVD' > > SELECT * FROM articles > > ROLLBACK TRAN > > Once you've verified that it deleted what you expected then change the > ROLLBACK to COMMIT. > > Make sure you have a backup. > > -- > David Portas > SQL Server MVP > -- >
Post Follow-up to this messageHello David Actually I want do also a rename command this means not delete the record however change all subgroups with DVD in e.g. VHS kind regards Paul "David Portas" < REMOVE_BEFORE_REPLYI NG_dportas@acm.org> schreef in bericht news:1127237303.004486.198620@g44g2000cwa.googlegroups.com... >I would do it in Query Analyzser (from EM you can select Tools, SQL > Query Analyzer) > > Something like this: > > BEGIN TRAN > > DELETE > FROM articles > WHERE subgroup = 'DVD' > > SELECT * FROM articles > > ROLLBACK TRAN > > Once you've verified that it deleted what you expected then change the > ROLLBACK to COMMIT. > > Make sure you have a backup. > > -- > David Portas > SQL Server MVP > -- >
Post Follow-up to this messageUPDATE articles SET subgroup ='VHS' WHERE subgroup = 'DVD' http://sqlservercode.blogspot.com/
Post Follow-up to this message
Show a Printable Version
Email This Page to Someone!
Receive updates to this thread