About 195,000 results
Open links in new tab
  1. sql server - What is the correct way to check and delete temp table ...

    Jan 31, 2023 · DROP TABLE [#MyTempTbl]; What is the correct way to check and delete temp table? The context is a stored procedure invoked by an agent job. I have tried querying the …

  2. sql server - Methods of speeding up a huge DELETE FROM …

    Using SQL Server 2005. I am performing a huge DELETE FROM with no where clauses. It's basically equivalent to a TRUNCATE TABLE statement - except I'm not allowed to use …

  3. Good explanation of cascade (ON DELETE/UPDATE) behavior

    Jun 20, 2013 · 21 SQL:2011 Spec There are five options for ON DELETE and ON UPDATE that can apply to the FOREIGN KEY. These are called <referential actions>, directly from the …

  4. sql server - Delete rows older than x days without locking table ...

    Feb 4, 2021 · 10 we have a quite big MS SQL database with millions of rows. I created a simple script to delete rows older than 1 month, but this seems to lock the table and creates trouble …

  5. sql server - How to drop multiple tables with common prefix in …

    Sep 29, 2016 · I'm using Microsoft SQL Server 2008.My question is:How to drop multiple tables with common prefix in one query? something like that table names: LG_001_01_STLINE, …

  6. sql server - Script to Delete records in multiple table - Database ...

    Apr 18, 2017 · From SQL DELETE Most database management systems allow you to create a foreign key constraint so that if you delete a row in a table, the corresponding rows the related …

  7. sql server - How to improve a delete operation that is running in ...

    Apr 7, 2025 · DELETE FROM #temp WHERE TABLE_ID IN (SELECT TABLE_ID FROM @DeletedIDs) -- DROP TABLE #DeletedIDs SET @RowsDeleted = @@ROWCOUNT; END …

  8. t sql - How does SQL Server process DELETE WHERE EXISTS …

    Jan 11, 2021 · The below is a valid TSQL statement. But I want to understand how SQL Server processes it. DELETE A FROM table1 WITH (NOLOCK) WHERE EXISTS ( SELECT 1 FROM …

  9. sql server - Delete multiple rows based on a choice between a ...

    May 11, 2018 · Delete multiple rows based on a choice between a combination of two columns Ask Question Asked 7 years, 7 months ago Modified 7 years, 7 months ago

  10. SQL Server database size didn't decrease after deleting large …

    Deleting rows in a database will not decrease the actual database file size. You need to compact the database after row deletion. SQL Server 2005 DBCC SHRINKDATABASE (Transact-SQL) …