3
votes
3answers
609 views
SQL Server Random Sort
What is the best way to sort the results of a sql query into a random order within a stored procedure?
…
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 …
0
votes
subselect vs outer join
The first query will be faster in SQL Server which I think is slighty counter intuitive - Sub queries seem like they should be slower. In some cases (as data volumes increase) an exi …
2
votes
When/Why to use Cascading in SQL Server?
I do a lot of database work and rarely find cascade deletes useful. The one time I have used them effectively is in a reporting database that is updated by a nightly job. I make sure that any chang …
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 …
10
votes
What are the differences(pros/cons) between clustered and non-clustered indexes
Clustered Index
Only one per table
Faster to read than non clustered as data is physically stored in index order
Non Clustered Index
Can be used …
0
votes
Can you limit the number of rows in a (database) table?
Keeping a version number for the database makes total sense. However I prefer to have a Version table that can contain multiple rows with fields for the version number, the time the update occured …
0
votes
SQL Date Search without time
The first thing to do is to remove the times from the dates. If you want to do this in the sql server code you can use something like the code below. I have this as a function on all the databases …
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
Easily find one stored procedure in SQL Server Management Studio from 1000 in treeview?
In Management Studio 2005 you can right click on the stored procedures folder (and other folders too) to set a filter, then you can type in all, or part, of the names that you are looking for.
…
