0
votes
How do I use T-SQL Group By
Group By forces the entire set to be populated before records are returned (since it is an implicit sort).
For that reason (and many others), never use a Group By in a subquery. …
0
votes
Sql to query a dbs scheme
Select Table_Name From Information_Schema.ColumnsWhere Column_Name = 'YourFieldName' …
1
vote
How should I organize my master ddl script.
Invest the time to write a generic "drop all constraints" script, so you don't have to maintain it. (A cursor over "Select * From Information_Schema.Table_Constraints" and "Select * From Informatio …
1
vote
What are the advantages of explicit Join Transitive Closure in SQL?
This is filthy, evil legacy syntax. You write this as
Select
* -- Oh, and don't ever use *, either
From
A
Inner Join B On A.ID = B.ID
Inner Join C On B.ID = C …
0
votes
SQL Table Aliases - Good or Bad?
I always use aliases, since to get proper performance on MSSQL you need to prefix with schema at all times. So you'll see a lot of
Select
Person.Name
From
db …
1
vote
How big would such a database be?
To be accurate, this can get really complex. For example, this is how you do it on MS SQL Server:
http …
14
votes
What are the pros and cons to keeping SQL in Stored Procs versus Code
The performance advantage for stored procedures is often negligable.
More advantages for stored procedures:
Prevent reverse engineering (if created With Encryption, of course) …
1
vote
What’s the difference between a Table Scan and a Clustered Index Scan?
http://msdn.microsoft.com/en-us/library/aa216840(SQL.80).aspx
The Clustered Index Scan logical and …
0
votes
SQL - What are your favorite performance tricks?
Prefix all tables with dbo. to prevent recompilations.
View query plans and hunt for table/index scans.
In 2005, scour the management views for missing indexes.
…
0
votes
Is it OK to drop sql statistics?
Statistics are too data-specific to be tooled. It would be potentially very inefficient to blindly re-create them on a data set.
…
2
votes
Represent Ordering in a Relational Database
I'd do a consecutive number, with a trigger on the table that "makes room" for a priority if it already exists.
…
0
votes
is it better to structure an SQL table to have a match, or return no result
B. It allows for much better checks whether the data is complete (for example, when you add an allowable/deniable feature).
Also, table size should only be a consideration for tables that y …
3
votes
MS access query using many tables
Why on earth do you have 12 different tables? That's a fundamentally bad design.
Anyway...
Select
EmployeeID, Total2008 = Sum(Value)
From
(Select EmployeeID, Value From …
0
votes
Is it possible to temporarily duplicate and modify rows on the fly in an SQL SELECT query?
Create a simple table that has all the minutes (warning, will run for a while):
Create Table Minutes(Value DateTime Not Null)
Go
Declare @D DateTime
Set @D = '1/1/2000'
While (Yea …
1
vote
