Viewing 15 posts - 4,126 through 4,140 (of 7,168 total)
Lynn Pettis (5/10/2012)
I'd say that you could still store 8 bits in a byte.
Surly Yoda today 😛
It is unclear to me from BOL but I found this link:
May 10, 2012 at 1:53 pm
That's a good paper. All the reading I have done and my experience with mirroring tells me it is not very good at scaling up to those levels. It is...
May 10, 2012 at 1:39 pm
forsqlserver (5/10/2012)
which one is better Merge or Peer to Peer replication for...
May 10, 2012 at 1:02 pm
Here is a start for you. Post back if you have more questions:
Add-Type -AssemblyName “Microsoft.SqlServer.Smo”
######################################################################
$instanceName = '.\STD2008R2'
$databaseName = 'test_multi_files'
######################################################################
$server = New-Object -TypeName Microsoft.SqlServer.Management.Smo.Server -ArgumentList $instanceName
$database = $server.Databases[$databaseName];
Write-Host ("$database has "...
May 10, 2012 at 12:44 pm
I would opt for PowerShell + SMO + BCP.
Pseudocode:
1. Using SMO loop over table collection for your database.
2. Inside loop call BCP once for each table and output data to...
May 10, 2012 at 10:20 am
I ran into another issue Tuesday and finally nailed it down to a file-copy operation that occurs prior to restore, but after the the block-level copy operation. I am just...
May 10, 2012 at 10:02 am
Chuck Hottle (5/9/2012)
If you're moving to 64-bit servers you should probably use 64-bit SQL Server unless there is some compelling reason not to.
+1
Re: Visual Studio 2005/2008/2010 are all 32-bit programs,...
May 10, 2012 at 9:26 am
AIRWALKER-375999 (4/20/2012)
opc.three (4/20/2012)
AIRWALKER-375999 (4/20/2012)
May 9, 2012 at 10:30 pm
By default those types of errors do not go to the SQL Server Error Log or anywhere else except back to the client. You could setup an Alert to let...
May 9, 2012 at 1:31 pm
I do not think Enterprise to Developer is a supported 'upgrade path'. I suspect you will need to install new Developer instances, and uninstall the Enterprise instances. Check with a...
May 9, 2012 at 12:10 pm
It was deprecated and left behind because the OLE DB provider for ODBC performed horribly and there was little support for it moving forward with the energy being dropped into...
May 9, 2012 at 11:57 am
It may generate fragmentation. It will depend on the number of CPUs you have and whether SQL Server decides to parallelize the insert. All an ORDER BY will do is...
May 9, 2012 at 11:44 am
Anytime 🙂 If you happen to check out TRY_CAST and have a moment to spare, could you post back for later viewers to know how you got along with it?
May 9, 2012 at 9:20 am
If LoadDate is ever-increasing, you always insert your snapshots for a given LoadDate using a single insert...select statement (i.e. you never go back and add rows with an existing LoadDate...
May 9, 2012 at 8:24 am
An option on SQL 2005 would be a SQLCLR function similar to TRY_CAST specifically to handle XML, and return the original string if it is valid, else return escaped XML...
May 8, 2012 at 10:16 pm
Viewing 15 posts - 4,126 through 4,140 (of 7,168 total)