Viewing 15 posts - 7,066 through 7,080 (of 22,213 total)
patrickmcginnis59 10839 (12/15/2014)
Grant Fritchey (12/15/2014)
patrickmcginnis59 10839 (12/15/2014)
Grant Fritchey (12/15/2014)
So, use...
December 15, 2014 at 8:31 pm
pottapitot (12/15/2014)
December 15, 2014 at 7:28 am
patrickmcginnis59 10839 (12/15/2014)
Grant Fritchey (12/15/2014)
So, use your bosses approach on...
December 15, 2014 at 7:26 am
Yes, Intellisense within SSMS is extremely flaky.
December 15, 2014 at 6:54 am
More memory.
2gb is extremely low for a SQL Server instance (assuming we're not talking about SQL Server Express). The minimum requirement is 500mb, so you're just barely beyond that, and,...
December 15, 2014 at 6:47 am
I would add the schema to the tables in all the code you're referencing. Even if it's just the default and the default is 'dbo' you'll have more accurate scripts...
December 15, 2014 at 6:42 am
Not only can you not restore just specific columns, but you can't restore just specific tables. A restore operation restores the whole database (well, there is such a thing as...
December 15, 2014 at 6:40 am
The one thing that always validates whether or not any backup mechanism is any good is to run a restore.
So, use your bosses approach on 3-5 different databases, preferably...
December 15, 2014 at 5:50 am
It really depends on what you are attempting to collect in this information you're gathering. I've always set up monitoring on a server-by-server basis, not on a database-by-database basis. If...
December 15, 2014 at 4:29 am
Check the security settings to see how you're connecting to the database and how the view is connecting to the linked server. It sounds like a disconnect is occurring between...
December 15, 2014 at 4:24 am
You need to gather more data. Run a query against sys.dm_exec_requests to see if there are blocked or blocking processes on your server. Also look at sys.dm_os_wait_stats to see what...
December 14, 2014 at 5:00 am
Most especially get the wait statistics while the backup is running in order to understand exactly what is causing things to slow down. sys.dm_os_waits_stats will show you a cumulative view....
December 13, 2014 at 5:23 am
You're still stuck with third party tools for doing this type of thing.
December 13, 2014 at 5:18 am
You can't really undo an in-place upgrade. You would have to uninstall everything and then restore your databases from a backup. You're pretty much making a commitment by doing your...
December 13, 2014 at 5:17 am
Jeff Moden (12/11/2014)
Grant Fritchey (12/2/2014)
npranj (12/1/2014)
The 42% cost is Clustered Index insert cost. There is one CI and 4 NCI on this table.
All the other costs are from...
December 11, 2014 at 9:26 pm
Viewing 15 posts - 7,066 through 7,080 (of 22,213 total)