Viewing 15 posts - 61 through 75 (of 182 total)
Is the restore job failing? On the SQL Server you installed the monitor server goto Management-->Log Shipping Monitor and then right click on one of the monitor jobs and click...
November 4, 2005 at 1:25 pm
November 4, 2005 at 1:17 pm
Two queries, one temp table and a reverse ranking by identity column!
1. Create a temp table for your data with the first column being an identity column.
2. Select the data into the...
November 4, 2005 at 1:12 pm
If Exists (Select empid From dbo.employees where empid = @empid)
Begin
Update
--test for error and take action ...
End
Else
Begin
Insert
--test for error and take action ...
End
November 3, 2005 at 6:30 am
Query msdb.dbo.sysjobs and msdb.dbo.sysjobschedules! I do not have time right now but can put the SQL together tonight if someone does not post it!
November 2, 2005 at 1:53 pm
insert into glb_email (type, title, subject, body)values('PAS-1', 'Add New Password, 'Subject Text', REPLACE('
We understand that you have recently or may soon receive.
For your convenience, allows you to provide this...
November 2, 2005 at 10:07 am
Try this:
SELECT TOP 100 PERCENT *
FROM dbo.MAINB
WHERE DateDiff(ss, tarih, '01/11/2005 16:00:00') <=0 And DateDiff(ss, tarihB '01/11/2005 20:00:00') >= 0
AND (meosar LIKE '1')
This will give you records that have 'tarih' a...
November 2, 2005 at 9:57 am
I am making the same assumption and was trying to walk him, into it!
I don't reccommend doinf DBCC's, Index rebuilds or stats on system databases if that is attempted here.
Integrity...
November 2, 2005 at 9:50 am
I was asking in reference to the patch for sp4.
November 2, 2005 at 9:43 am
Capture the start and end times in a log or log table and discard the resulting output.
November 2, 2005 at 9:36 am
So Have you given it a shot with the implicit conversion of the varchar back to a datetime?
November 2, 2005 at 8:11 am
Removing the data being retuned to an application will more than likely reduce the amount of time and work to be done.
November 2, 2005 at 8:05 am
Which job is failing?
November 2, 2005 at 8:01 am
What data type is the column tarihb? I would also use (tarih >= Convert(DateTime, CONVERT(varchar, DATEADD([day], - 1, GETDATE()), 112) + ' 16:00:00')) AND (tarihb <= Convert(DateTime, CONVERT(varchar, DATEADD([day], 0,...
November 2, 2005 at 5:41 am
Last question! If you execute the procedure from query analyzer on qa and production, what is returned from the procedure?
November 1, 2005 at 3:28 pm
Viewing 15 posts - 61 through 75 (of 182 total)