Viewing 15 posts - 1,486 through 1,500 (of 2,268 total)
Databases do tend to grow over time as you put more data into them.
What is the problem with it growing? are you running out of space?
March 26, 2009 at 4:41 am
run DBCC CHECKDB on the database to check for any errors.
DBCC checkdb WITH ALL_ERRORMSGS , NO_INFOMSGS
http://msdn.microsoft.com/en-us/library/aa258278(SQL.80).aspx
March 26, 2009 at 4:38 am
Only the Enterprise edition of SQL Server offers peer-to-peer replication.
Are you running enterprise?
March 25, 2009 at 10:59 am
What do you want to learn? what aspects of the Job do you enjoy?
It seems like you have worked as a ETL developer, database developer, software developer and a...
March 25, 2009 at 8:26 am
I mean , is the SQL service running under a Domain Account or a Local System Account
March 25, 2009 at 6:51 am
what sort of accounts are the SQL servers running on ?
March 25, 2009 at 5:18 am
what sort of accounts are the SQL servers running on ?
March 25, 2009 at 5:10 am
Though i usually avoid EAVs this seems like a case where you could have one table to hold all the attributes.
for example
you could have one table with the shape...
March 24, 2009 at 11:31 am
What sort of information about the shapes do you need to store?
March 24, 2009 at 11:14 am
For a large amount of updates i find the most effiecnt way is to put the updated value in a lookup table and then do the update using an Update...
March 24, 2009 at 11:03 am
Gift Peddie (3/23/2009)
Collation does not affect how the data is stored, only how it is compared and sorted.
Well but when you need to store Greek one of the most complex...
March 23, 2009 at 9:44 am
Collation does not affect how the data is stored, only how it is compared and sorted.
Are you using a UniCode column type (nChar or nVarchar)?
Are you using the prefix N...
March 23, 2009 at 9:18 am
Add a Maintenance Clean up task to your Maintenance plan, with this you can select to delete old backups that are over a certain age.
Run this nightly to clean...
March 23, 2009 at 9:15 am
It is really hard to give specific advice as lot of the answers really depend on what you are using the database for, how the application code has...
March 20, 2009 at 6:27 am
Viewing 15 posts - 1,486 through 1,500 (of 2,268 total)