Viewing 15 posts - 16 through 30 (of 91 total)
I'm using the SS debugger and I want to set a watch on the table variable so I can set a breakpoint, inspect and view the values of the table...
July 28, 2015 at 10:03 am
I ended up debugging through SSMS directly on the DB server
July 27, 2015 at 5:13 pm
any idea why this might not be working?
July 27, 2015 at 2:09 pm
A null parameter should essentially not be applied as a filter. A null parameter means the user did not want to filter by that parameter.
March 27, 2015 at 3:42 pm
Ah ha. Figured it out:
The Microsoft.SqlServer.Management.Common namespace resides in the Microsoft.SqlServer.ConnectionInfo.dll assembly.
March 25, 2015 at 1:21 pm
The problem is that the dll does not exist on my computer so I need to download it from somewhere or install a program that includes it and copy the...
March 25, 2015 at 1:11 pm
David Moutray (3/5/2015)
sqlguy-736318 (3/5/2015)
Thanks! I seem to remember that there was a heuristic for a long time that queries that join more than 5 tables should generally be avoided....
March 8, 2015 at 3:32 pm
One benefit of breaking the query into temp tables is that allows the SQL writer to logically group related tables/data.
For example, course-related tables/data could be grouped into 1 temp table...
March 5, 2015 at 4:50 pm
David Moutray (3/5/2015)
March 5, 2015 at 4:10 pm
ZZartin (3/5/2015)
Why do you think the process of create and populating temp tables will be less confusing?
Because you would be breaking the problem into pieces which inherently simplifies the problem....
March 5, 2015 at 4:04 pm
Thanks Eirikur, that's the basic N:N implementation I had in mind. My question was, is N:N the correct relationship for the scenario I'm describing, and under what scenario would I...
May 8, 2014 at 5:32 pm
I'd actually like to ensure that all events in the event log are included in the SS DB. Not just errors and not just events related to SS. ...
February 10, 2014 at 4:28 pm
select userid, incidentid from mytable
no functions or indexes. running query through ssms directly on the db server
January 21, 2014 at 5:37 pm
Viewing 15 posts - 16 through 30 (of 91 total)