Viewing 15 posts - 91 through 105 (of 173 total)
Keep in mind sp_MSforeachdb is an undocumented stored procedure, and may be removed in future versions. If this is for actual production development please use what GSquared provided.
November 6, 2012 at 12:09 pm
This should get you close.
EXEC sp_MSForEachDB 'Use ?; select table_catalog, table_name, count(*) from information_schema.columns
where table_catalog like ''k%''
and table_name = ''hist''
group by table_catalog, table_name'
November 6, 2012 at 10:36 am
As with most things if you require expert results you probably need an expert.
Here are some helpful links to get you started.
http://www.vmware.com/files/pdf/sql_server_best_practices_guide.pdf
http://www.brentozar.com/archive/2011/05/keys-deploying-sql-server-on-vmware/%5B/url%5D
November 5, 2012 at 12:20 pm
The two machines can be well isolated, but it greatly depends on your configuration.
November 5, 2012 at 10:00 am
Here's a shotgun. It has the potential to bring your server to it's knees, so don't even think about running this anywhere near a production server.
DECLARE @sql...
October 8, 2012 at 3:51 pm
October 2, 2012 at 4:31 pm
ScottPletcher (9/28/2012)
SELECT SERVERPROPERTY('ComputerNamePhysicalNetBIOS')
If that doesn't work, there are SERVERPROPERTY parameters that aren't documented: you might try poking around for some of those and see if any of them...
September 28, 2012 at 2:17 pm
With VMWare having the VMware Tools installed, or in systray is a pretty good indicator.
September 28, 2012 at 11:09 am
Your post is pretty vague so my response is vauge.
Scope creep can be a pretty big problem for BI projects irrespective of the size of the company. Is there...
September 28, 2012 at 9:48 am
I'm not sure why you are not able to do an inplace upgrade. But failing every thing else, you can always just backup the database and restore it or...
September 26, 2012 at 4:21 pm
You should also look at the cluster events in the cluster manager.
September 26, 2012 at 3:36 pm
VygonDBA (8/3/2012)
I was lucky enough to be promoted at the beginning of this year and am now the sole DBA at my company looking after 5 SQL Server...
August 3, 2012 at 1:30 pm
You may want to look at column store indexes or just buying more drive space as an alternative.
That shrink file command is probably being blocked (and fragmenting your...
August 3, 2012 at 11:30 am
What do your wait types look like?
Is the workstation configured to use all this extra ram? With the increase in procs are you running into paralllism contention with the...
August 3, 2012 at 9:32 am
Between partially contained databases and being able to create your own server roles in 2012 I'd imagine you could do what you're asking.
Though you'll want to have someone somewhere with...
August 2, 2012 at 4:30 pm
Viewing 15 posts - 91 through 105 (of 173 total)