Viewing 15 posts - 466 through 480 (of 1,186 total)
To my knowledge the table description is resident in Access ONLY. You can add columnar descriptions in SQL but not table (that I know).
I would assume you will need to...
March 28, 2005 at 10:07 am
2 ways of handling this
#1 Basically you have 2 tables A. Current activity, B. Conflicting stored-procedure combinations
1st item of business is when the stored procedure fires that you want to queue READ...
March 28, 2005 at 6:03 am
SQL Profiler (Found inside Enterprise Manager)
Only selections you need should hopefully be:
TSQL > StmtComplete
Stored-Procedure > StmtComplete
Forget where these are under
Show Plan All
Show Plan Text
Execution Plan
For the fields to capture add...
March 25, 2005 at 3:54 pm
I would look at possible contention inside of your TEMPDB table. What is the size of your TEMPDB database and hard disk size?
I would alos probably turn on low-level profiling...
March 25, 2005 at 12:02 pm
Please see thread http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=170073.
Same topic. Has multiple postings
March 25, 2005 at 5:31 am
Have you looked at ROLLBACK TRAN T1? You will need to build in @@ERROR check to be the RETURN from the nested procedures and interrogate and IF there is an...
March 25, 2005 at 5:29 am
Something like this?
DECLARE @ThisMonth DATETIME
DECLARE @NextMonth DATETIME
SET @ThisMonth = '2005-03-24'
IF DATEPART(DAY, @ThisMonth) <> 1
BEGIN
SET @ThisMonth = DATENAME(YEAR, @ThisMonth) + '-' + DATENAME(MONTH, @ThisMonth) + '-01'
END
SET @NextMonth =...
March 25, 2005 at 5:20 am
bummer....
I would check sp_who2, sp_lock, and possibly run profiler to see if you can capture what is going on....
March 24, 2005 at 6:38 pm
I suggested moving to ADO from RDO because RDO is no longer supported or recommended. ADO on the other hand is still the connection of choice (for now at least) and...
March 24, 2005 at 5:35 pm
Steve,
No offense taken. That wouldn't be the first (nor the last probably) that I have been called a girl
. I just...
March 24, 2005 at 5:26 pm
It could be an ordering thing as well. IF SQL was installed AND THEN the server was renamed there could be problems....
March 24, 2005 at 11:16 am
Why not change the stored-procedure to try and perform the following?
IF EXISTS (SELECT * FROM dbo.table WHERE criteria)
BEGIN
UPDATE...
END
ELSE
BEGIN
INSERT
END
March 24, 2005 at 11:14 am
Does the account that you are using for the scheduled backup (i.e. the userid that the job will RunAS) have rights to get to your F:\ drive?
March 24, 2005 at 11:12 am
1. I would switch the application to use ADO v. RDO
2. I would change the UPDATE portion of your equation to use stored-procedure v. AD-HOC query. Your timeout may be...
March 24, 2005 at 11:10 am
I know in SQL Profiler (SQL 2K) you can open the trace file and then under File > SaveAs select table....
Is this available in 7.0 version???
March 24, 2005 at 5:43 am
Viewing 15 posts - 466 through 480 (of 1,186 total)