2001-08-22
416 reads
2001-08-22
416 reads
Displays database properties. Was this the best way of doing it? Probably not, but it works.
2001-08-22
560 reads
Displays Maintance plan history if any. I used distinct to filter out and return only what is relevent to what I need. You may not wish this for your purposes. Feel free to make changes
2001-08-22
402 reads
2001-08-22
747 reads
Returns a list of table names from the current database Which do not have primary keys assigned.
2001-08-22
443 reads
2001-08-22
590 reads
2001-08-22
751 reads
Get OLE Providers info I have found this useful in tracking down application driver/connection issues. I only had to use it 2 times. But it did help
2001-08-22
462 reads
Very simple, how much space is free on the hard drives of the SQL Server you are connected to.
2001-08-22
709 reads
2001-08-22
431 reads
In Part 1, we saw how ‘Vamana’ represents vectors as nodes, connects them with...
I’m excited to announce the release of a new open-source project that fully automates...
One of my favourite features of SQL Server 2022 was the T-SQL Snapshot Backups....
Comments posted to this topic are about the item Optional Parameter Plan Optimization in...
Comments posted to this topic are about the item AI Experience Gap that we...
There is a table tmp_tab:
CREATE TABLE tmp_tab ( id int, val int );
INSERT INTO tmp_tab VALUES (1, 1), (2, NULL), (3, 3), (4, 4), (5, 5);You want to order the rows ids by the following expression:
ISNULL(val, id) + 1Which of the following queries produces the expected ordering and why? (Select all correct) See possible answers