Viewing 15 posts - 2,716 through 2,730 (of 6,679 total)
As long as you balance the resources between the instances - there shouldn't be any issues.
July 2, 2013 at 11:25 am
PaulB-TheOneAndOnly (6/10/2013)
I would focus on the issue at hand, do it only on affected tables.
He ran a shrink on the database - that affected all tables...
June 10, 2013 at 12:21 pm
Right-click on the database in Object Explorer - select Reports - Select Disk Usage report. If there are still records in the default trace then this report will show...
June 10, 2013 at 12:18 pm
You will only see value in striping a backup when you have multiple drives available - and separate IO paths to those drives. Striping a backup to the same...
May 16, 2013 at 11:37 am
Total WAG...but I have seen things like this where the developers were informed (for whatever reason) that stored procedures require a parameter and therefore they built everything with a parameter...
May 16, 2013 at 11:34 am
This indicates that you have a problem with tempdb (database ID 2). This could be related to the SAN dropping the connection, or corruption on the LUN, or some...
May 16, 2013 at 11:29 am
JC-3113 (5/14/2013)
Thanks Lynncan you tell me when it is best to update indexes ?
before a full backup or after ?
or do I need to do one before and after
Thanbks
Jim
You will...
May 14, 2013 at 12:14 pm
SQL Server 2000 is no longer supported. Your best option is to upgrade to the latest version.
Note that to get there you will need to upgrade to 2008 first.
May 11, 2013 at 5:17 pm
Michael Valentine Jones (5/8/2013)
selectDT,
SecondsSince_19000101 =
-- seconds for whole days as bigint
(datediff(dd,0,a.DT)*000000000086000)+
-- seconds since start of day
datediff(ss,dateadd(dd,datediff(dd,0,a.DT),0),a.DT)
from
( -- test data
select DT = getdate()union all
select DT = '99991231 23:59:59.997'union all
select DT =...
May 8, 2013 at 12:37 pm
Michael Valentine Jones (5/6/2013)
May 8, 2013 at 12:25 pm
What is the version of the 2005 system? If is prior to SP2 with a hotfix you will have issues...
You also need to know what version of the client...
May 8, 2013 at 12:21 pm
You need to also be aware that any explicit transactions - with explicit rollbacks will also roll back any of these messages that are being logged.
May 2, 2013 at 11:37 am
I would recommend the SSIS approach - simply for the fact that you can then control the batch and commit sizes on the OLE DB Destination (using the fast load...
May 1, 2013 at 12:44 pm
I would verify with the client that they are not backing up to multiple files and that they are actually using native SQL backup. If they are not using...
April 30, 2013 at 11:44 am
Steve JP (4/29/2013)
When you attach a database file, if the log file cant be found then it will recreate a default sized log file at the correct location. I think...
April 29, 2013 at 2:03 pm
Viewing 15 posts - 2,716 through 2,730 (of 6,679 total)