1
vote
What’s the best way to implement a SQL script that will grant select, references, insert, update, and delete permissions to a database role on all the user tables in a database?
There's an undocumented MS procedure called sp_MSforeachtable that you could use which is definately in 2000 and 2005.
To grant select permissions the usage would be:
exec …
2
votes
Is there a way to loop through a table variable in TSQL without using a cursor?
First of all you should be absolutely sure you need to iterate through each row - set based operations will perform faster in every case I can think of and will normally use simpler code.
D …
1
vote
Fastest way to delete all the data in a large table
On SQL Server you can use the Truncate Table command which is faster than a regular delete and also uses less resources. It will reset any identity fields back to the seed value as wel …
1
vote
Transact-SQL to sum up elapsed time
The following will work for SQL Server, other databases use different functions for date calculation and getting the current time.
Select Case When (Stop <> '31 Dec 9999') Th …
-1
votes
Need some help with a simple SQL query.
You will need a timestamp column and you'll need to write a query that joins the table to itself like this
Select *
From Userdata U
Where 1 = (Select Top 1 StateType
From …
3
votes
SQL Server 2005 and temporary table scope
The temporary table will be accesible to the instance of the procedure that creates it
The following script
Exec ('Select 1 as col Into #Temp Select * From #Temp')
Exec ('S …
0
votes
tsql math across multiple dates in a table
You can use a subquery to perform the calcuation, the only problem is what do you do with the first month because there is no previous DandA value. Here I've set it to 0 using isnull. The query loo …
