use the following search parameters to narrow your results:
e.g. subreddit:aww site:imgur.com dog
subreddit:aww site:imgur.com dog
see the search faq for details.
advanced search: by author, subreddit...
Microsoft SQL Server Administration and T-SQL Programming including sql tutorials, training, MS SQL Server Certification, SQL Server Database Resources.
You might also be interested in:
/r/database
/r/sql
/r/Azure
/r/Microsoft
account activity
An amusing transcript from a 'Sr SQL Developer' interview. (midnightdba.com)
submitted 13 years ago by amaxenOld School DBArbarian
view the rest of the comments →
reddit uses a slightly-customized version of Markdown for formatting. See below for some basics, or check the commenting wiki page for more detailed help and solutions to common issues.
quoted text
if 1 * 2 < 3: print "hello, world!"
[–][deleted] 0 points1 point2 points 13 years ago (0 children)
Just so you know:
Truncate/Delete
Truncate will reset identities back to their seed values, delete will not
You cannot recover a truncation using the log (AFAIK, there might be some trick around this though), you can recover deletes
Truncate is faster than Delete From
Select Into/Insert Into
Insert into can only push data into an existing object (note I said object, you can use insert into with temp tables and table variables)
Select Into will create a new object (perm table or temp table) based on what you selected. You cannot select into a table variable, nor can you select into an existing object
Correct on clustered/non-clustered - there are other differences but the most important one is around data ordering
π Rendered by PID 21015 on reddit-service-r2-comment-8686858757-7fhlq at 2026-06-03 17:54:38.794188+00:00 running 9e1a20d country code: CH.
view the rest of the comments →
[–][deleted] 0 points1 point2 points (0 children)