Viewing 15 posts - 37,996 through 38,010 (of 49,571 total)
Duplicate post. No replies to this thread please. Direct replies to:http://www.sqlservercentral.com/Forums/Topic745523-359-1.aspx
July 1, 2009 at 9:45 am
Duplicate post. No replies to this thread please. Direct replies to:http://www.sqlservercentral.com/Forums/Topic745523-359-1.aspx
July 1, 2009 at 9:44 am
You can chance them as you like. A switch to simple takes effect immediately. A switch from simple to either full or bulk logged takes effect after the next full/diff...
July 1, 2009 at 9:43 am
Are you sure? I just ran it on my local server (admittedly SQL 2008) with just the SELECT ''?'' inside the IF and I got a list of all of...
July 1, 2009 at 9:24 am
July 1, 2009 at 9:06 am
ps (7/1/2009)
Do you suggest we run dbcc checkdb every week so that such issues are recorded in the error log?
Yes, absolutely, and someone needs to review the results...
July 1, 2009 at 8:58 am
EXEC master..sp_MSForeachdb '
USE [?]
IF DB_ID() > 4
BEGIN
SELECT ''?''
ALTER DATABASE ? COLLATE XXXX
END'
Be careful if there's replication, as that will still affect the distribution...
July 1, 2009 at 8:46 am
ps (7/1/2009)
July 1, 2009 at 8:19 am
Untested, but should do as you want.
CREATE PROCEDURE [dbo].[GetOverallStatus] @statusid int, @Rows int OUTPUT
AS
DECLARE
@tablename varchar(200),
@query nvarchar(1000)
BEGIN
SET NOCOUNT ON;
SELECT @tablename = Tablename FROM dbo.Status...
July 1, 2009 at 8:19 am
WayneS (7/1/2009)
Which brings up some questions:1. What difference does it make what version a server is on for Intellisense to work?
Valid T-SQL constructs. Should intellisense show that DATE is a...
July 1, 2009 at 7:42 am
Steve Jones - Editor (7/1/2009)
July 1, 2009 at 7:39 am
The damage was in the cluster. It could be that you got lucky and it was an empty page that hadn't yet been dropped from the index.
p.s. you need to...
July 1, 2009 at 7:33 am
That's an awfully small autogrow amount for a 4GB data file
July 1, 2009 at 7:13 am
agh100 (7/1/2009)
But I am sure you know what it is I want.. Is this somehow possible?
I don't quite know what you want. Could you explain more.
Do you want single values...
July 1, 2009 at 7:07 am
Viewing 15 posts - 37,996 through 38,010 (of 49,571 total)