Viewing 15 posts - 871 through 885 (of 1,033 total)
r.hensbergen (3/23/2009)
March 23, 2009 at 8:48 am
bvaljalo (2/20/2009)
To be totally honest, I'm kinda thinking...
February 20, 2009 at 12:20 pm
Yah... that's where I am now... using a cursor to fetch the first and last names from one table.. build dynamic sql to create the containstable function dumping the results...
February 20, 2009 at 7:38 am
We're not losing data doing this.
If the database is in a transactionally inconsistent state, sql won't attach it and we retrieve the logs as necessary. Out of the last...
February 11, 2009 at 1:57 pm
Because that's what I was told to make happen. When I had to move 4000 databases, it worked great... this time I have less time to move about 200...
February 11, 2009 at 12:01 pm
That's great, unless you want to recreate the log.
CREATE DATABASE [name] ON (FILENAME = [path to mdf]) LOG ON (FILENAME = [path to ldf]) FOR ATTACH REBUILD LOG
will give an...
February 11, 2009 at 10:52 am
Hoping somebody has an idea... I've been watching process monitor and there's not even an attempt to access the UNC that I can see in it... so something is irking...
January 16, 2009 at 8:17 am
HanShi (1/8/2009)
From the word ASSUMES I conclude that it is possible to use different collations on the server instances. Okay, the results will vary between the server instances, but that...
January 8, 2009 at 7:39 am
Again... the reason I did what I did was I couldn't come up with a way to run
DBCC CHECKPRIMARYFILE (N''' + @filename + ''',2)
Which gets the actual name of the...
January 7, 2009 at 9:49 am
I dunno if this qualifies as a weird case where you need a cursor or not.
Certainly if this could be done as one big set based query, I'd go for...
January 5, 2009 at 9:05 am
Yah that's pretty much what I did...
Put this in the maint plan before the tlog and differentials...
declare @cmd nvarchar(max)
declare @dbs sysname
declare csr_nobackup cursor for
select
a.[name]
from sys.databases...
December 17, 2008 at 2:38 pm
I'd also like to point out that the link to BOL has this... which means there may be more than just the four...
The following hints are described in this section:
That...
December 15, 2008 at 10:02 am
Cliff Jones (12/15/2008)
Thanks Steve. Actually I am inclined to agree with Markus and would have selected all four had I not consulted BOL.
Depends on what part of it you...
December 15, 2008 at 9:59 am
MarkusB (12/15/2008)
Even BOL talks about a query optimizer...
December 15, 2008 at 9:58 am
I also noticed this is not forward carrying and is only for one version of SQL 2000 CE...
This workaround applies only to the current release of SQL Server CE and...
December 10, 2008 at 9:49 am
Viewing 15 posts - 871 through 885 (of 1,033 total)