Viewing 15 posts - 6,541 through 6,555 (of 14,953 total)
I'd need to know what kind of credentials they are using, and how those are managed, before I could even begin to answer this. Are they using SQL logins,...
October 15, 2010 at 10:53 am
If you don't want the other two performances in the query, why does it have, "OR p.perf_no in (6352,6353) " in the Where clause?
October 15, 2010 at 10:51 am
msmall 95832 (10/15/2010)
I don't why but almost every interview I've had I get asked about clustered index vs non clustered....
Because for a lot of people, that's the trickiest SQL question...
October 15, 2010 at 10:49 am
Will a trace do what you need? You can capture all commands issued to the server, filtered by account/connection.
October 15, 2010 at 10:36 am
Can you provide rough-draft code for the outer and inner procs? It's quite likely that it can be rewritten into a single procedure that will do everything you need,...
October 14, 2010 at 2:12 pm
On further thought, if they aren't supposed to access the database at all, why do their accounts allow it? You can set up SQL Server to deny the right...
October 14, 2010 at 12:30 pm
You can run a DML trace that will capture all queries run against the database. Take a look at "sp_trace_create" in Books Online (or on MSDN) for details on...
October 14, 2010 at 11:57 am
Are there numbers in that column when it's non-Null? If so, do they include numbers below 1 (zero or negative or fractions)?
If it's numeric, and if 1 is lowest...
October 14, 2010 at 11:28 am
Yes, you'd need to log that data to report against it.
October 14, 2010 at 11:23 am
In your query of the log data, can you use the "For XML Path" trick to concatenate it all into a string?
October 14, 2010 at 11:22 am
What edition of SQL Server are you using? Express, Workgroup, Standard, Enterprise/Dev?
October 14, 2010 at 11:13 am
OTF (10/14/2010)
alen teplitsky (10/13/2010)
October 14, 2010 at 11:12 am
You might be having a problem with the "where not in" part that queries the target table.
Have you tried logging the inserted rows in a temp table, using the Output...
October 14, 2010 at 11:06 am
Are you even sure it's the For XML part that's causing the problem? Have you run side-by-side tests with and without that clause on the same data+query+parameters?
October 14, 2010 at 11:00 am
Viewing 15 posts - 6,541 through 6,555 (of 14,953 total)