3
votes
3answers
444 views
What is a Covered Index?
I've just heard the term covered index in some database discussion - what does it mean?
…
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
Finding missing emails in SQL Server
You could use exists instead of in like this:
Select J.Email
From Jobseeker j
Where not exists (Select * From aspnetMembership a where j.email = a.email)
…
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 …
4
votes
What is your reporting tool of choice?
I've used Reporting Services and Crystal fairly extensively, and I'm writing a few reports using Excel(ick) at the moment.
Reporting Services is pretty good for simple reports but as soon a …
2
votes
How do I find records added to my database table in the past 24 hours?
The SQL Server query is:
Select *
From Messages
Where MessageTime > DateAdd(dd, -1, GetDate())
As far as I can tell the (untested!) MySQL equivalent is
…
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 …
4
votes
Stored procedure parses correctly but will not execute. Invalid object name. Msg 208
Looks like it might not exist yet, swap the Alter to a Create.
…
