Viewing 15 posts - 181 through 195 (of 335 total)
It's not a matter of an advantage/disadvantage, it's another concept.
Clustering is a failover system for your server (not for your storage), while mirroring is a failover for your complete environment....
October 1, 2008 at 8:45 am
LDF is the logfile. A large LDF file doesn't mean it's using all the spacelog, probably there's a lot of free space in this LDF file. To check this, run:
dbcc...
October 1, 2008 at 6:36 am
We have a quad quad with 128gb of ram 120 for sql and 8 gb for the o/s
And your asking if 32bit is still an option ? π :D...
October 1, 2008 at 2:42 am
2 additions:
- SQLSafe has a freeware version, which does 95% of your backup tasks.
- use MSSQL2008 π
October 1, 2008 at 2:39 am
It seems you copy the data in one transaction. If your recovery model is SIMPLE this whole transaction is registered in your logfile (needed by SQL for recovery/rollback in case...
October 1, 2008 at 2:36 am
If you query master..sysdatabases, you'll see a column called version. This column represents the internal databasestructure.
This number is higher for 2005, compared to 2000 (generally, every new MSSQL version has...
September 30, 2008 at 3:57 am
You can also look at the errorlog by executing this T-SQL statement:
exec master..xp_readerrorlog
September 30, 2008 at 3:47 am
DELETE FROM tblHistory WHERE id = @id AND TransDate < GetDate() - 30
Am I missing something? If ID is a primary / unique key it will delete 1 row...
September 30, 2008 at 3:41 am
if you run sp_who2, you'll see the SPID who is blocking.
Do a DBCC INPUTBUFFER(###)
REPLACE ### with the blocking SPID
September 30, 2008 at 3:34 am
SORT_IN_TEMPDB does what is says: Only sorts during rebuilding take place in TempDb, all other steps take place in your filegroup.
September 29, 2008 at 9:37 am
Instead of firefighting, determine what's causing the problem:
- start monitoring your databases, so you can predict diskspace issues.
- implement warnings/alerts
- make sure you backup your logfiles for full-recovery databases (common...
September 29, 2008 at 2:51 am
Check windows/sql documentation, it's pretty clear about this situation, for example see this fragment from MSSQL 2K5 CU9:
Cumulative Update 9:
Failover Cluster Installation
The following information applies only to SQL Server 2005...
September 26, 2008 at 8:33 am
Are you a salesman? π
Who's the lucky DBA who has this database running on this server? (I'm not)
Other question to you folks: Any experience with storing your databases on SSD...
September 26, 2008 at 8:31 am
check if the database is in Simple recovery mode, then try shrink the files,
This works only for logfiles
September 26, 2008 at 8:27 am
If you shrink a database, you'll truncate the free space at the end of a file.
Consider this datafile( X=data, .=free)
XXXXXXX.XX.....XX.......XX.XXXXXXX.XXXX............X..............
If you truncate this file, it will be something like...
September 26, 2008 at 8:25 am
Viewing 15 posts - 181 through 195 (of 335 total)