Viewing 15 posts - 61 through 75 (of 497 total)
Jeff Moden (4/17/2013)
I guess I don't understand why don't just read from the system tables/views using TSQL.
I have to write it to a file later, so it is easier with...
April 17, 2013 at 10:10 pm
Microsoft SQL Server 2008 R2 (SP1) - 10.50.2500.0 (X64) Jun 17 2011 00:54:03 Copyright (c) Microsoft Corporation Enterprise Edition (64-bit) on Windows NT 5.2 <X64>...
April 17, 2013 at 6:12 pm
So I understand I would have to re-install the default and the named instances to make them failover, but will be able to keep the names of the instances in...
April 10, 2013 at 7:44 pm
This is where I got so far:
$DBScriptFile = "C:\Scripts\test.sql"
$replacement = invoke-sqlcmd -query "Select CountryCode From [DBUtilities].[dbo].[EnvBuild] Where Id = (select MAX(Id) from [DBUtilities].[dbo].[EnvBuild])"
$Query = $DBScriptFile -replace "{CountryCode}",[string]$replacement[0]
Invoke -Sqlcmd -ServerInstance...
December 2, 2012 at 4:58 pm
opc.three (6/25/2012)
Try it with -Name, like this:
Get-ChildItem -Name -Exclude dbo.sp_MS*
This one worked, because it has "dbo."
Thanks!
June 26, 2012 at 2:09 am
opc.three (6/25/2012)
opc.three (6/25/2012)
Try it with -Name, like this:
Get-ChildItem -Name -Exclude dbo.sp_MS*
😛 and then I remembered the initial intent...
Try this one:
Get-ChildItem | Where-Object {$_.name -NotLike "sp_MS"} | %{$_.Script($so) + " GO...
June 26, 2012 at 12:03 am
I tried:
Get-ChildItem -exclude sp_MS*
But I am still getting those replication stored procs in the list. :crazy:
June 25, 2012 at 7:06 pm
Perry Whittle (6/20/2012)What on earth makes you think that? It's no different to any other node failure in a cluster, the instance will restart on a partner node. Where do...
June 20, 2012 at 5:36 pm
okbangas (6/19/2012)
June 19, 2012 at 9:05 pm
Yep, but how does it help with Full text indexing?
May 2, 2012 at 5:17 pm
I used an insert putting convert(varbinary(max), Description) for the column.
May 2, 2012 at 12:20 am
I tried playing with
-CommitBatchSize
-CommitBatchThreshold
and
-ReadBatchSize
-ReadBatchThreshold
for distribution and log reader agents respectively and it seemed to had helped, but the replication looks slower.
March 26, 2012 at 7:56 pm
Roy Ernest (3/26/2012)
The only option I can think of that can help is Snapshot Isolation. I cant think of anything else.
Where should I use Snapshot isolation? The SPs that...
March 26, 2012 at 6:58 pm
eforta.it (3/21/2012)
My response is going to be a complete cop-out in terms of what you want around licensing advice....
....but....
.... speak to your licensing agent and see what you can negotiate...
March 21, 2012 at 8:55 pm
John Mitchell-245523 (3/20/2012)
March 21, 2012 at 12:20 am
Viewing 15 posts - 61 through 75 (of 497 total)