Viewing 12 posts - 1 through 12 (of 12 total)
Please find the execution plan for the delete statement. Looking at the plan INDEX delete operation is taking most of the time, Please let me know if there is any...
June 24, 2013 at 3:53 am
Not on a daily basis but during weekends. We dont have any Txn log bkps or Diffnt bkps running during business hours, so performance kill with backups is ruled out?
November 19, 2012 at 5:52 am
Thanks Master for your reply.
I would alter my MP to the following Sequence. Please let me know if this is Ok to go with.
Check DB Integrity -> Rebild Index
Thanks,
Nagarjun.
November 19, 2012 at 4:35 am
I mean to say all the dates that are there in the date filed should be shifted by some number of days but should not be greater than current date.
May 11, 2012 at 6:09 am
CREATE TABLE [dbo].[faxes] (
[ID] int NOT NULL,
[Fax_Date] datetime NULL,
[Audit_ID] int NULL)
ON [PRIMARY];
GO
Insert into faxes values (1,'6/5/2012',1000)
Insert into faxes values (2,'6/25/2011',1000)
Insert into faxes values (3,'8/15/2010',1000)
Insert into faxes values (4,'9/25/2009',1000)
Insert into...
May 11, 2012 at 5:59 am
I want to update all datecolumns or shift dates to recent so that it would appear as fresh data. I want to have generic query which does this for me.
Thanks,
Nagarjun.
May 11, 2012 at 5:37 am
Thanks for the reply!
If i want to check all 6 log files (at a time) for all server restart msgs?
Thanks,
Nagarjun.
November 21, 2011 at 1:07 am
SET NOCOUNT ON
DECLARE @crdate DATETIME, @hr VARCHAR(50), @min-2 VARCHAR(5)
SELECT @crdate=create_date FROM sys.databases WHERE NAME='tempdb'
SELECT @hr=(DATEDIFF ( mi, @crdate,GETDATE()))/60
IF ((DATEDIFF ( mi, @crdate,GETDATE()))/60)=0
SELECT @min-2=(DATEDIFF ( mi, @crdate,GETDATE()))
ELSE
SELECT...
June 23, 2010 at 1:10 am
I just had got this doubt while reading an article about pages. Thanks its cleared!
October 22, 2009 at 5:08 am
Thanks for all replies!
My question was like is there any other table which has all information about the sys.xxx table names (Metadata) stored? This would be helpful if i forget...
October 5, 2009 at 11:41 pm
Hey Sudeep,
The code in the red is my earlier code which was giving errors and the code...
July 7, 2009 at 10:16 pm
Perfect Guru! It went like a rocket! Thanks a lot!!!
Thanks,
Nagarjun.
July 7, 2009 at 6:36 am
Viewing 12 posts - 1 through 12 (of 12 total)