Viewing 15 posts - 2,641 through 2,655 (of 7,168 total)
Have you heard of Central Management Server (CMS)? It supports the "interact with each server in a server group from PowerShell" functionality that I think you are after.
If setting up...
December 24, 2012 at 1:34 pm
It should say "physical cores" instead of "physical processors." I would set it to 6 for the number of physical cores per NUMA node. If you're still seeing too much...
December 24, 2012 at 12:08 pm
Tracing the nested cursors in that process made my head hurt a little. If you want to stick with a manual stats update process in T-SQL I would recommend you...
December 24, 2012 at 11:58 am
Are you following the steps shown in the Workarounds area of the connect itew I linked to above? There are some restrictions depending on how you set it up.
December 24, 2012 at 10:07 am
USE [YourDatabase];
SELECT name,
recovery_model_desc,
log_reuse_wait_desc,
is_cdc_enabled
FROM ...
December 24, 2012 at 10:04 am
It may work, just realize that you have given up the notion of centralized management. If the restore fails you will not see it in the log on Server A....
December 24, 2012 at 9:59 am
I think where jyuan68 is going, and I agree with checking it out, is that if the login used by the Linked Server on the remote server has execute permissions...
December 24, 2012 at 9:51 am
osql.exe is not a good tool to use for new development. It has been deprecated since SQL 2005 was released. If you need a command line query tool use sqlcmd.exe.
That...
December 21, 2012 at 3:46 pm
shaun.stuart (12/21/2012)
opc.three - Not sure what you mean. sysssispackages doesn't have xml columns. The package is stored as a blob in an image column.
SELECT [Name] AS [SSIS Name],
...
December 21, 2012 at 1:12 pm
David92595 (12/21/2012)
December 21, 2012 at 1:09 pm
Would like to know the version of the instance but one other beginning question, have you tried selecting the XML out of msdb.dbo.sysssispackages to see if the XML content has...
December 21, 2012 at 11:04 am
Are you from the future? SQL 2008 R2 SP4? Just want to level the set before we dig in.
December 21, 2012 at 10:52 am
If your logs grew once, after shrinking them they will likely want to regrow again to the same size due to the normal workload on the server. Adding more disk...
December 21, 2012 at 10:50 am
"Enabled" = (Not Disabled) 🙂 , i.e. service start type = Manual or Automatic. I like Automatic so I do not need to remember to start it each time after...
December 21, 2012 at 9:49 am
Maybe I am confused...why would you ever be working directly with a job_id to call a job remotely? I would not bother with an extra function or round trip to...
December 21, 2012 at 9:41 am
Viewing 15 posts - 2,641 through 2,655 (of 7,168 total)