Viewing 15 posts - 9,871 through 9,885 (of 26,489 total)
GilaMonster (8/29/2012)
sierra4 (8/29/2012)
i have not used the dbcc repair options before, but in this regard is the experts' recommendation to use dbcc repair only as a last resort?
In most cases,...
August 29, 2012 at 3:09 pm
Looks like a problem with a nonclustered index, id = 22. Try dropping and recreating this index.
August 29, 2012 at 12:41 pm
This:
declare @TimeStr time = '16:40:27',
@SecondsAtStatus int = 734;
select @TimeStr, dateadd(ss, @SecondsAtStatus, @TimeStr);
August 29, 2012 at 11:14 am
celayne (8/29/2012)
I need to add the "SecoundsAtStatus" to the Time field to...
August 29, 2012 at 11:07 am
TravisDBA (8/29/2012)
Yet another example of what some people will take offense to nowadays. 😀
Make it easier for others:
August 29, 2012 at 11:05 am
At this point, there really isn't enough information to make any educated quesses, just shots in the dark. Have you looked at other aspects regarding server performance; disks, network,...
August 29, 2012 at 10:12 am
jdbrown239 (8/29/2012)
In sql 2008r2 I am looking for master.dbo.syslogins but unable to find it. Is there another I can use?
That is a backward compatibility view, and it is now in...
August 29, 2012 at 10:07 am
djackson 22568 (8/29/2012)
Lynn Pettis (8/29/2012)
August 29, 2012 at 10:00 am
One suggestion I have is to set up a server side trace and see what is running when this occurs.
August 29, 2012 at 9:57 am
Here is my solution.
CREATE TABLE #Test
(
NAME VARCHAR(10),
DT_START DATETIME,
DT_END DATETIME,
LOCATION VARCHAR(10)
);
INSERT #Test
SELECT 'Jack','1997-12-18','1998-12-08','BANGALORE'
UNION ALL SELECT 'Jack','1998-12-09','1999-10-13','BANGALORE'
UNION ALL SELECT 'Jack','1999-10-14','2000-07-26','BANGALORE'
UNION ALL SELECT 'Jack','2000-07-27','2001-03-26','BANGALORE'
UNION ALL SELECT 'Jack','2001-03-27','2002-07-01','CHENNAI'
UNION ALL SELECT 'Jack','2002-07-02','2003-01-29','CHENNAI'
UNION ALL SELECT 'Jack','2003-01-30','2003-04-30','MUMBAI'
UNION...
August 29, 2012 at 9:18 am
Sean Lange (8/29/2012)
Luis Cazares (8/29/2012)
Try this instead:
;with MyRank (col1)
as
(
select 6 union all
select 5 union all
select 4 union all
select 3 union...
August 29, 2012 at 8:29 am
I find as I get older I tire more quickly of the constant cursing of others. Don't get me wrong, I can curse with the best of them just...
August 29, 2012 at 8:19 am
Does this have anything to do with your restore database thread?
Could there be something going on between these?
August 28, 2012 at 3:38 pm
8/19/2012 9:51 spid17s CHECKDB for database 'NSMRulestat' finished without errors on 2009-09-20 18:00:09.840 (local time). This is an informational message only; no user action is required.
8/19/2012 9:51 spid11s CHECKDB for...
August 28, 2012 at 2:25 pm
Viewing 15 posts - 9,871 through 9,885 (of 26,489 total)