1
vote
SQL Command Add Database Diagramming
The script is a little too long to add here, but here's what you can do.
1) Create a new database.
2) Start sql server profiler
3) Click the "Database Diagrams" folder in management studio.
4) Clea …
2
votes
How to get number of chars in string in Transact SQL, the “other way”
My understanding is that DATALENGTH(@txt)/2 should always give you the number of characters. SQL Server stores Unicode characters in UCS-2 which does not support surrogate pairs.
…
0
votes
SQL counts performance (sql 2000)
One thing to take into consideration, is that the SQL Server query optimizer is cost based. In other words it will inspect your query, index strategies, statistics and other factors to create a qu …
