Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
3answers
1k views

Changing newid() to newsequentialid() on an existing table

At the moment we have a number of tables that are using newid() on the primary key. This is causing large amounts of fragmentation. So I would like to change the column to use newsequentialid() ...
2
votes
1answer
140 views

NewSequentialId on UniqueIdentifier Clustered Index

I am working on database standards for a new database my company is starting. One of the things we are trying to define is Primary Key and Clustered Index rules in relation to UniqueIdentifiers. ...
1
vote
1answer
373 views

using NEWSEQUENTIALID() with UPDATE Trigger

I am adding a new GUID/Uniqueidentifier column to my table. ALTER TABLE table_name ADD VersionNumber UNIQUEIDENTIFIER UNIQUE NOT NULL DEFAULT NEWSEQUENTIALID() GO And when ever a record is updated ...
1
vote
2answers
491 views

How to import data with SSIS for sequential guids?

Is there anyway to import data into SSIS where I expect the PKs to be sequential guids? The only method I've been able to come up with so far is to create a temporary table with the column defaulting ...
0
votes
0answers
144 views

Entity Framework 4.1 Code First using NEWSEQUENTIALID() for primary keys

What is the proper way to use NEWSEQUENTIALID() for id generation with EF4.1 Code First?
0
votes
0answers
208 views

insert into table with newsequentialid() as primary in Linqpad

I have a sql table (using sql server 2008) which has a table with Id column of type uniqueidentifier (and not an identity). The default value for this is set to newsequentialid(). When a new row is ...
0
votes
3answers
54 views

Help to Simplify SQL Insert which uses NEWSEQUNETIALID() column default

I have the following insert stored procedure: CREATE Procedure dbo.APPL_ServerEnvironmentInsert ( @ServerEnvironmentName varchar(50), @ServerEnvironmentDescription varchar(1000), ...
0
votes
3answers
123 views

Get SQL Insert to work when PK is supplied or NOT

I have the following stored procedure: ALTER Procedure dbo.APPL_ServerEnvironmentInsert ( @ServerEnvironmentName varchar(50), @ServerEnvironmentDescription varchar(1000), @UserCreatedId ...
0
votes
2answers
519 views

Should a Sequential Guid primary key column be a clustered index?

The goal of using a sequential guid is so you can use clustered indexes without the high levels of fragmentation that would normally exist in a clustered index if it was a regular guid, correct?