Viewing 15 posts - 4,846 through 4,860 (of 7,168 total)
FairlySimple (3/22/2012)
opc.three (3/15/2012)
1. Restore a copy of your database into a DEV environment.
2. Change the database to 80...
March 22, 2012 at 12:53 pm
aaron.reese (3/22/2012)
Great idea!One other issue would be that the index names would not correlate to the table. SQL doesn't care but a hint optimiser might 😛
You can rename your...
March 22, 2012 at 10:23 am
Joe-420121 (3/22/2012)
March 22, 2012 at 10:17 am
bruce 1565 (3/22/2012)
Add-Type -AssemblyName "Microsoft.SqlServer.Smo, Version=10.0.0.0, Culture=neutral, PublicKeyToken=89845dcd8080cc91" -EA Stop
foreach ($server in $(Get-Content -Path serverList.txt)) {
$srvObject = New-Object...
March 22, 2012 at 10:13 am
I do not know of a way to handle this case natively from within SQL Server. One way to handle this outside SQL Server might be to create an application...
March 22, 2012 at 10:10 am
The more normalized the schema, the more overhead there will be in constituting a resultset that crosses many normalization boundaries, i.e. more joins will be necessary for your read operations....
March 21, 2012 at 4:57 pm
It is hard to say with this level of detail.
By swap space, do you mean paging file? And by "large amount", what does that mean in terms of GB?
If the...
March 21, 2012 at 4:37 pm
Good deal, happy to assist 🙂
March 21, 2012 at 10:39 am
I was thinking partitioning, but that would be overkill for the three tables. I would however look into partitioning for getting your arms around your 1TB table.
Back to the three...
March 21, 2012 at 10:35 am
OK, our individual use of terminology can be such a funny thing sometimes, I'm with you now, thanks for the clarification.
Is this going to be an ongoing need? If not,...
March 21, 2012 at 9:35 am
marno (3/20/2012)
Can anyone please assist me in the best way to create and run a powershell script from my machine across multiple servers (with multiple instances installed) to obtain facet...
March 20, 2012 at 10:57 pm
Since you have LPIM and AWE enabled it is most likely not SQL Server buffer pool pages being paged to disk, which is what we want on a server only...
March 20, 2012 at 10:32 pm
Sounds familiar. What bitness of SQL Server are you running, and what is the command line you're running via xp_cmdshell?
March 19, 2012 at 6:18 pm
You are not blocking anyone by trying to run the command to change the DB owner, the change-owner command itself is being blocked. You cannot change the owner of the...
March 19, 2012 at 10:03 am
My guess is the "4-week limit" is a UI limitation. The proc is not limited in that way. Not sure about the MP task.
March 16, 2012 at 8:44 am
Viewing 15 posts - 4,846 through 4,860 (of 7,168 total)