Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3601354
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 18, 20262026-05-18T20:36:42+00:00 2026-05-18T20:36:42+00:00

Is there a way to write a script that examines each table in the

  • 0

Is there a way to write a script that examines each table in the database, looking for a uniqueidentifier column named ID, and then add a DEFAULT constraint of NEWID() to the column if a DEFAULT constraint does not exist?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-18T20:36:43+00:00Added an answer on May 18, 2026 at 8:36 pm

    Edited per OP’s commented clarification

    This script creates a DEFAULT constraint of NEWID() on any uniqueidentifier columns named ID that do not already have a DEFAULT constraint.

    SET NOCOUNT ON
    
    DECLARE @tableVarId int
    DECLARE @alterSql   nvarchar(MAX)
    
    DECLARE @columnsNeedingDefault TABLE
    (
      TableVarId    int IDENTITY (1,1) PRIMARY KEY,
      AlterSql      nvarchar(MAX)
    )
    
    INSERT INTO @columnsNeedingDefault (AlterSql)
    SELECT
      'ALTER TABLE ' + QUOTENAME(a_Table.[name]) +
      ' ADD CONSTRAINT [DF_' + a_Table.[name] + '_' + a_Column.name +
      '] DEFAULT NEWID() FOR ' + QUOTENAME(a_Column.name)
    FROM
      sys.columns AS a_Column
    INNER JOIN
      sys.tables AS a_Table ON a_Column.[object_id] = a_Table.[object_id]
    WHERE
      a_Column.[name] = 'ID'
      AND
      a_Column.user_type_id = 36 -- uniqueidentifier
      AND
      NOT EXISTS
      (
        SELECT
          *
        FROM
          sys.default_constraints AS a_DefaultConstraint
        WHERE   a_DefaultConstraint.parent_object_id = a_Table.[object_id]
          AND   a_DefaultConstraint.parent_column_id = a_Column.column_id
          AND   a_DefaultConstraint.type_desc = 'DEFAULT_CONSTRAINT'
      )
    
    SET @tableVarId = (SELECT MIN(TableVarId) FROM @columnsNeedingDefault)
    WHILE @tableVarId IS NOT NULL
      BEGIN
        SELECT @alterSql = AlterSql FROM @columnsNeedingDefault
    
        PRINT @alterSql
        EXEC sp_executesql @alterSql
    
        SET @tableVarId = (SELECT MIN(TableVarId) FROM @columnsNeedingDefault
                           WHERE TableVarId > @tableVarId)
      END
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

In bash I am able to write a script that contains something like this:
Is there a way to customise the failure report from junit such that I
I have a script that reads simpledb domains and writes them to s3. the
I have a Jenkins (Hudson) server setup that runs tests on a variety of
I have a table in which the even rows have a colspan spanning the
I have a project with a large number of targets and to release my
I have a third party C code which has large arrays of type float
What is the best-practice for developing web-pages for both non-JS-enabled and JS-enabled pages? I
I have been reading up on password hashing, but all the forums I read
whenever I run this below it gives the output but it also gives an

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.