Viewing 15 posts - 466 through 480 (of 482 total)
Hi Stefan,
Of course you can pass the name of a new DB. You'll need a way to create it -- this would likely be a stored procedure which accepts the...
May 27, 2004 at 6:40 am
OK. I usually monitor Stored Procedures - RPC Completed and TSQL - SQL Batch completed. In the Data Columns tab, defaults are usually fine. Makre sure TextData and Duration are...
May 18, 2004 at 6:53 am
Turn on SQL Profiler, capturing the output to a table (this also has a cost, unless you're writing to another server). Make sure that you're getting the SQL/stored procedure calls,...
May 18, 2004 at 6:27 am
You might want to use initials. What will you do if you do have 2 John Walkers with same DOB?
P
January 28, 2004 at 11:45 am
Estuardo,
Not sure if previous reply made it...sorry if this is a repeat.
A few things:
1) You need a datatype for col1 of your #tmp_table.
2) I was able to do a similar...
January 28, 2004 at 9:53 am
RE: Term_Date = 20790606 or 99991231.
Just because we (presumably) won't be around on either of those dates doesn't mean they're safe to use. Somebody may be. Come that date, I...
October 24, 2003 at 1:45 pm
BCC,
This looks like the output from the startup of the SQL Server (you should see the last line in the SQL Server error log, as well -- one line for...
October 24, 2003 at 1:26 pm
Hi Dave,
OK, that's all good.
Question 1) Can you tell who (which user) is connected to the server when they get there via the app?
Question 2) If the app can connect...
October 24, 2003 at 12:55 pm
Thanks for the replies.
No, no temp tables used.
Steve, I will try to set the alert, however, these deadlocks only occur under very high load, which typically only happens once or...
October 23, 2003 at 6:35 am
Hi all,
Thanks for the input.
Application roles: Don't want to do this, we are aiming for *really* thin clients, all business rules (including security) on back-end. Also, from what I have...
October 23, 2003 at 6:29 am
Sounds like a subquery...
Something like
SELECT <some fields>
FROM <some tables> as st1
JOIN (SELECT <some fields>
FROM <some other tables>) AS st2 ON st2.<field> = st1.<field>
Now,...
October 20, 2003 at 9:36 am
Sounds like a subquery...
Something like
SELECT <some fields>
FROM <some tables> as st1
JOIN (SELECT <some fields>
FROM <some other tables>) AS st2 ON st2.<field> = st1.<field>
Now,...
October 20, 2003 at 9:36 am
5409045121009 and whoteegan:
Thank you for the replies.
Raiserror in sproc #3 is handled correctly. No results are returned to the application, and the error message is displayed where expected.
whoteegan: Application not...
October 6, 2003 at 5:53 am
Sounds like a index problem, as in lack of useful indices. You don't mention any in your post.
Also, I'm not sure, but it appears that ExclusionList might not be normalized....
August 6, 2003 at 7:08 am
Viewing 15 posts - 466 through 480 (of 482 total)