Viewing 15 posts - 2,431 through 2,445 (of 8,416 total)
Jeff Moden (10/26/2010)
October 26, 2010 at 11:27 pm
Jeff Moden (10/26/2010)
Now aday's, MS uses a type 4 GUID which isn't much more than a random number on steroids.
Not for NEWSEQUENTIALID - that uses version 1. I mentioned...
October 26, 2010 at 7:59 pm
Craig-315134 (10/26/2010)
It would seem there are now more posts on the subject of GUIDS than there are GUIDS. 😀
:laugh: Yes, this is always a hotly-debated topic. I'm not really...
October 26, 2010 at 9:22 am
GSquared (10/26/2010)
October 26, 2010 at 8:46 am
Eric Russell 13013 (10/26/2010)
October 26, 2010 at 8:33 am
Jeff Moden (10/25/2010)
Maybe in 2k8+. Not everyone has that.
I was thinking more of backup compression than compression inside the database. For that, we have tools like LiteSpeed, HyperBac,...
October 25, 2010 at 10:33 pm
Jeff Moden (10/25/2010)
And considering disk storage for the sake of backup time and recovery time isn't something to be horrified by. 😉
We should probably also consider that large databases would...
October 25, 2010 at 7:53 pm
On the subject of storage size:
SQL Server stores data on pages with a fixed size of 8192 bytes. After 96 bytes are reserved for the page header, 8096 bytes...
October 25, 2010 at 6:46 pm
Eric Russell 13013 (10/25/2010)
...sequential GUIDs created using NEWSEQUENTIALID() can potentially be duplicated across multiple database instances.
NEWSEQUENTIALID calls the Windows API function UuidCreateSequential, which uses version 1 of the GUID algorithm....
October 25, 2010 at 6:40 pm
Eric Russell 13013 (10/18/2010)
October 25, 2010 at 1:00 am
Jeff Moden (10/24/2010)
October 24, 2010 at 10:50 pm
ChrisM@home (10/24/2010)
October 24, 2010 at 5:02 pm
Jeff Moden (10/23/2010)
Do the source (##temp) and destination (##Results) tables need to be global tables in order for the solution that you posted to work?
Hi Jeff,
The most accurate answer is...
October 23, 2010 at 9:52 am
Forgot the attach the C# source code (the meat of the thing is in the parallelWorker class, at the bottom):
using System;
using System.Collections;
using System.Collections.Generic;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using AdamMachanic.QueryTools;
using Microsoft.SqlServer.Server;
public partial class UserDefinedFunctions
{
...
October 23, 2010 at 6:36 am
Chris Morris-439714 (10/22/2010)
400,000 rows in 15 seconds...
This problem isn't ideal for a SQLCLR solution because it produces the same number of rows it consumes, and there is very little calculation...
October 23, 2010 at 6:24 am
Viewing 15 posts - 2,431 through 2,445 (of 8,416 total)