Viewing 15 posts - 3,436 through 3,450 (of 6,679 total)
I would not drop/recreate the indexes - I would disable the non clustered indexes before the load and rebuild them after the load.
To disable: ALTER INDEX {index name} ON {table}...
January 16, 2011 at 10:35 am
Steve Jones - SSC Editor (1/15/2011)
January 15, 2011 at 7:37 pm
joshtheflame (1/9/2011)
DECLARE @startDate varchar(20)
DECLARE @endDate...
January 15, 2011 at 3:28 pm
Deepak Sahu (1/14/2011)
Could anyone throw somelight on , SQL Server Management Studio 2005 Express can connect to SQL Server 2008 Express databases?
I believe it does - as long as you...
January 15, 2011 at 10:12 am
Is there an issue with space that you are trying to fix? At those sizes, I would just leave the databases at that size and let SQL Server use...
January 15, 2011 at 9:09 am
You can use a tool like WinDirStat to identify what is using the space.
If you install the tool on your local workstation, you can then create a mapped drive to...
January 15, 2011 at 9:02 am
If all you need to do is shrink the backup file, look into the backup utilites that provide compression - or use a compression tool on the backup file (e.g....
January 15, 2011 at 8:57 am
smile_netz (1/14/2011)
Currently, we have a Production server that has a clustering with 2 SQL 2008 instances.
In the future, we are planning...
January 14, 2011 at 3:59 pm
I have a 1TB database that I restore nightly to a report server. The process I use is:
Split the backup BCV backup volume
Mount the BCV volume on the report...
January 14, 2011 at 3:49 pm
When you say 'consistent' I am assuming you want the databases to be backed up at exactly the same time.
I am not familiar with NTBackup and how it implements VSS...
January 13, 2011 at 2:56 pm
I would recommend that you not use locale specific formats for your dates. Instead, you should use one of the non-ambiguous formats.
The best option would probably be YYYYMMDD -...
January 12, 2011 at 5:24 pm
Roy, I know this is a really, really stupid question - but can you confirm what the max memory setting is? It should be 262144 for 256GB of memory...
January 12, 2011 at 5:12 pm
piet.kouwer (1/12/2011)
January 12, 2011 at 4:53 pm
Yes - that is correct. Now, the problem you are having is that the backup was performed from SQL Server 2008 R2 and you are running SQL Server 2008.
You...
January 11, 2011 at 7:29 pm
weitzera (1/11/2011)
I think all you can do is set your recovery model to bulk logged and try to proactively prevent fragmentation.(Those operations are eligible for minimal logging.)
Sorry
Even with minimal logging...
January 11, 2011 at 5:36 pm
Viewing 15 posts - 3,436 through 3,450 (of 6,679 total)