Viewing 15 posts - 1 through 15 (of 16 total)
Yes, the hex is 32 + 2 for 0x. Its the uniqueidentifier converted in binary format.
June 13, 2008 at 1:08 pm
Here you go.
declare @jobid varchar(1000)
Declare curtemp cursor for SELECT SUBSTRING (
PROGRAM_NAME ,
PATINDEX ('%(Job %', PROGRAM_nAME)+ 5,
34)
FROM MASTER..SYSPROCESSES WHERE PROGRAM_NAME LIKE '%STEP%'
open curtemp
fetch next from curtemp...
June 13, 2008 at 1:02 pm
The hex is the job_id. Try the below
select * from msdb..sysjobs where job_id =
0x3E31DB24ED72CD49A8114462A66A0367
June 13, 2008 at 12:36 pm
You can use dbcc inputbuffer (spid) for SQL 2000.
June 13, 2008 at 10:56 am
The hex is the job_id for the job. You can query sysjobs and it will give you the name of the job.
e.g.
select * from msdb..sysjobs
where job_id = 0x1292021D3C929A4CBBE3895A61FA68CC
June 13, 2008 at 10:53 am
You can set snapshot at the database level. This below will change the default of READ_COMMITED TO READ_COMMITED_SNAPSHOT.
ALTER DATABASE MyDatabase
SET READ_COMMITTED_SNAPSHOT ON
More info below.
June 7, 2008 at 3:45 pm
RAID 5 is striping with parity.The one disk which Ellis is referencing will be your parity disk. Say if one disk fails. in that scenario, your data will be read...
June 6, 2008 at 4:06 pm
You can query msdb..backupset for information about what table has bene backed up when.
select Database_Name, Physical_Device_name, Case When type = 'D' then 'Full'
When type = 'L' Then 'log'
When type...
June 6, 2008 at 4:02 pm
Thanks Jeff for your detetailed response. That is definetely helpful.
July 1, 2007 at 12:20 am
Thanks bill, i agree that instances would be a better measure.
June 28, 2007 at 4:05 pm
You might want to make sure that the disk are on different controllers. and also how many HBA's do you have. We have HBA's with a throughput of 100 mb/S...
April 8, 2004 at 1:29 pm
Jeff,
How about creating a job without a schedule for the DTS and then start the job from within the procedure ?
April 8, 2004 at 1:20 pm
Do you have anything else running on the server like OFM(Open File manager) or any Network intrusion detection softwares
April 8, 2004 at 1:07 pm
Kind of dumb But did any Permissions change on the server or domain.
April 8, 2004 at 1:03 pm
Thanks Andy. I thought there would had been an easy way out. But thanks for the help.
October 24, 2002 at 9:57 pm
Viewing 15 posts - 1 through 15 (of 16 total)