Viewing 10 posts - 1 through 10 (of 10 total)
I agree, the books from Itzik are the best ever
January 2, 2012 at 4:30 pm
Great article, looking forward for next step.
I had a little problem when running the query - but it was easy to spot where the problem was.
SELECT
...
February 23, 2011 at 8:34 am
Although interesting, your coverage of SUBQUERIES is far from complete.
how would you query:
1) list employe-name for the employee(s) with highest salary
2) who is the manager with the highest salary employee(s)...
July 22, 2010 at 11:38 am
I like the article, but would like show a variation that will produce the same output, with the advantage to be able to do other controls if necessary (instead of...
December 24, 2008 at 8:45 am
I did, and fixed a minor problem: If your SQL Server is CASE SENSITIVE the original code won't work due some names spelled in CAPITALs. The attached .txt file fixes...
December 19, 2008 at 1:19 pm
understood, but not practical at all...
Thanks Wayne
December 8, 2008 at 11:07 am
I saw it, and I actuallly ran the code (had to do minor adjustments due case-sensitivity of my SQL installation here). But the code does not retrieve data from any...
December 8, 2008 at 10:52 am
Nice article, but I'd like to see how to actually work with data, i.e. retrieving data from a table or set of tables - or calling a SP to retrieve...
December 8, 2008 at 8:57 am
try to create a SP that actually does something with a table.
and then execute: sp_depends to that SP or to that table, that was my point.
so you'd use the results...
April 30, 2008 at 12:46 pm
All you needed to do was to recompile the function (or drop and re-create it)
Explanation: All compiled objects (Stored Procedures, Triggers, Functions, views, etc) are stored in the database in...
April 30, 2008 at 8:28 am
Viewing 10 posts - 1 through 10 (of 10 total)