Viewing 15 posts - 1,486 through 1,500 (of 1,999 total)
on an aside - if ever in doubt or struggling with connection strings visit
http://www.connectionstrings.com
although in this instance failing to include the instance name wouldn't be picked up by that site.
July 17, 2008 at 4:54 am
There may be another choice here.
SQL determines when to issue a checkpoint for that database. I've seen several instances of checkpoints being issued way too infrequently on large databases,...
July 17, 2008 at 4:48 am
hey no-one said itwas perfect - just a tool to make long winded jobs easier
anyway - many ways to skin a cat - if you don'thave msdb available and you...
July 16, 2008 at 10:06 am
perhaps this is a slightly simpler example
create table #temp(tfield varchar(50))
insert into #temp select '00:00:50'
insert into #temp select '00:01:20'
insert into #temp select '01:00:50'
insert into #temp select '00:00:50'
insert into #temp select '00:00:50'
select...
July 16, 2008 at 9:21 am
i cheat and get sql to write t backp script for me
here is my script to generate restorecommands
declare @dbname varchar(100)
set @dbname='rssystem'
select 'restore log '+@dbname+' from disk='''+bmf.physical_device_name+''' with norecovery' from msdb.dbo.backupset...
July 16, 2008 at 8:59 am
on an aside - why store age as a column - would DOB be better?
July 16, 2008 at 8:51 am
I've seen this with linked server connections before. in general linked servers are "bad" (they have a time and place sure)
you avoid using linked servers?
relicate the data or some...
July 16, 2008 at 8:42 am
a simple alternative might be
exec sp_monitor (from master database)
this will (without too much accuracy) give you % cpu utilisation between executes of the proc (amongst other things)
the...
June 3, 2008 at 8:20 am
hi guys
will be performing the red gate backup and test restore today, but in the mean time
file copy to another disk fails (as per original post) - which is...
March 4, 2008 at 2:13 am
already ahead of you - attempting to use redgate sqlbackup.
we suspect this may be a an o/s specific issue in files larger than 50GB.
Cheers
MV
March 3, 2008 at 4:59 am
select * from table_name where created_date>=convert(varchar(11), Created_Date, 106) and
created_date<convert(varchar(11), dateadd(d,-1,Created_Date), 106)
completly sargeable
February 29, 2008 at 3:41 am
if you look up sargeable criteria you will find that
column name on left hand side
any function(where humanly avoidable) on the right hand side
basic rules of query writing , and...
February 29, 2008 at 3:36 am
guys,
apologies for placing this in the sql 2005 section was meant for sql 2000
but have tio flame most of you here....(regret).....
if you read the original post
this is sql 2k...
February 29, 2008 at 3:24 am
in that case your largest transaction will when you reindex a table (most likely)
November 19, 2007 at 1:49 am
ALTER DATABASE MYDB SET RECOVERY SIMPLE
go
use mydb
go
checkpoint
go
dbcc shrinkfile (logfilename,1)
go
then your log file should never grow beyond a reasonable value (proboably the same size as your largest clustered index) again
problem pretty...
November 16, 2007 at 4:10 am
Viewing 15 posts - 1,486 through 1,500 (of 1,999 total)