Viewing 15 posts - 1 through 15 (of 21 total)
Eamon,
Yes, it is rolling back the transaction. Check if the table is indexed......the rollback will take much longer if so..
If the job is running over a network rather than...
March 27, 2007 at 2:30 am
There is also a stored procedure...
sp_helpindex tablename
March 15, 2007 at 6:36 am
On a more optimistic note, technology usually catches up, biofuels are not a realistic alternative option to oil now because of the land area which would be needed to grow...
March 8, 2007 at 3:13 am
Hi
Yes
You can use this from SQL Query Analyzer...
use master
BACKUP LOG YOUR_DATABASE_NAME WITH TRUNCATE_ONLY
use YOUR_DATABASE_NAME
dbcc shrinkfile (YOUR_LOG_NAME, 0)
Its a good idea to take a backup first...
March 8, 2007 at 2:50 am
Hi
Are you scheduling the job from Sql Server Agent, you could check the job history there, or run this query from Query Analyzer to find the problem....
USE MSDB
select j.name as 'Name',...
March 8, 2007 at 2:34 am
You could also use these SQL Server stored procedures....
to check space on disk....
execute master..usp_diskspace
to check database sizes.....
sp_helpdb
February 20, 2007 at 3:41 am
The above error message caused by problem with your connection string....does not recognize server name.....
Why dont you create a DTS Job in SQL Enterpise Manager to load the data and...
February 9, 2007 at 2:25 am
Try this procedure, best to run on master database...
CREATE PROCEDURE usp_diskspace
AS
SET NOCOUNT ON
DECLARE @hr int
DECLARE @fso int
DECLARE @drive char(1)
DECLARE @odrive int ...
January 25, 2007 at 2:41 am
You could also create a batch file in DOS and call it from scheduled tasks, in this batch file add the date to the file name and copy it to...
August 10, 2006 at 3:10 am
I noticed that too and discovered its just the way SQL Server with SP4 reports Latch waits on a process, its nothing to worry about Check out this page for...
June 21, 2006 at 10:22 am
PS I borrowed part of this CODE somewhere on this site so if anyone recognizes it thanks very much!!
June 16, 2006 at 5:48 am
I have a job running in SQL Server Agent which does this, uses sysprocesses and DBCC INPUTBUFFER, I tried SQL Trace and a few other approaches, mostly 6 of one...
June 16, 2006 at 5:47 am
Its also worth adding what tables are used in the code in the comment header ...e.g. .....
-- TABLES REFERENCED - SERVER.DATABASE.DBO.TABLE1
-- ...
June 14, 2006 at 4:18 am
Why dont you create a table of your own, and insert the sysprocesses data into it adding a getdate() field, and create a job in Sql Server Agent to run...
June 8, 2006 at 8:01 am
You could also call a BCP command using the exec master..xp_cmdshell from within a procedure and pass the file names to it.....something along these lines....
e.g.
declare @sql varchar(512), @filename varchar(50)
--...
May 11, 2006 at 10:45 am
Viewing 15 posts - 1 through 15 (of 21 total)