Viewing 15 posts - 271 through 285 (of 663 total)
Any good references on the nitty gritty differences between #temp tables and variable tables
August 12, 2003 at 12:10 am
Hang in there, in a few months you'll be the guru for their systems. Ok, maybe with an alcer or two and the manager will still not know how...
August 10, 2003 at 5:57 pm
How many calls per sec during expected peak traffic
Potential hotspots on some tables with inserts.
August 7, 2003 at 5:24 pm
-- Need some more work, maybe function, etc.
Set nocount on
Declare @Job_ID UNIQUEIDENTIFIER
DECLARE @is_sysadmin INT
DECLARE @job_owner sysname
Select @JOB_ID=JOB_ID from sysjobs
Where Name='TEST'
IF NOT (@JOB_ID IS NULL)
...
August 6, 2003 at 8:28 pm
Just a last stab at the problem.
Can you tried DBCC DROPCLEANBUFFERS, DBCC FREEPROCCACHE to see if it makes any difference before executing the code
August 6, 2003 at 7:12 pm
One solution is to check if one of the scheduled jobs are running!
Suppose one can also look at all the DBCC INPUTBUFFER for the relevant database and check for the...
August 6, 2003 at 7:00 pm
If you don't mind me asking, which one did you enhance and what functionality did you add
August 6, 2003 at 5:44 pm
Use Enterprise Manager and schedule two jobs to perform the insert and clear.
August 6, 2003 at 4:02 pm
August 6, 2003 at 4:00 pm
Remember in the "old" days (6.5) you need to have at least the equivalent of the largest table(bytes wise) free and plus 10% -> 20% before starting to drop and...
August 6, 2003 at 3:58 pm
Have a look at http://support.microsoft.com/default.aspx?scid=http://support.microsoft.com:80/support/kb/articles/Q220/1/63.asp&NoWebContent=1
Have used SCPTXFR.exe myself for awhile!
August 5, 2003 at 4:12 pm
Alternatively restore full backup as a "new database". Copy last table to live database as a ANotherTable. Restore next differential or log. If data still in original table copy to...
August 5, 2003 at 4:04 pm
Have a look at Lumigent's
Log Explorer at http://www.lumigent.com/
August 5, 2003 at 12:00 am
I think in production environment you'll kill your database. Secondly with multiple tables and a rollback in one all previous captures need to be undone.
August 3, 2003 at 3:24 pm
IF UPDATE(IsPending) tell you that for at least one of the row(s) the column IsPending was changed.
The part WHERE i.IsPending <> d.isPending check each row to determine for which of...
July 31, 2003 at 9:59 pm
Viewing 15 posts - 271 through 285 (of 663 total)