Viewing 15 posts - 1,486 through 1,500 (of 1,995 total)
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
there are several things you can do scripting wise
select object_name(id),rowcnt from sysindexes where indid<2
is a quick way to geta row count for all tables
you can also "select object_name(id),text...
October 26, 2007 at 8:14 am
download yourself a copy of sql diagnostic manager from idera (idera.com at a guess)
you get a 15 server 30 day evaluation - should be able to identify what your bottlnecks...
October 17, 2007 at 5:43 am
have you considered it may not be a RAM issue. how are your disks configured ?
October 17, 2007 at 3:33 am
hmm - 512 to 2Gb in 2 days.
is your autogrow setting 100% instead of 10% ? 512-1024-2048 ? seems like a coincidence.
October 12, 2007 at 4:16 am
Viewing 15 posts - 1,486 through 1,500 (of 1,995 total)