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 872573
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 15, 20262026-05-15T10:48:11+00:00 2026-05-15T10:48:11+00:00

I want to alter a table to add a constraint during upgrade on a

  • 0

I want to alter a table to add a constraint during upgrade on a SQL Server database.

This table is normally indexed on a filegroup called ‘MY_INDEX’ – but may also be on a database without this filegroup. In this case I want the indexing to be done on the ‘PRIMARY’ filegroup.

I tried the following code to achieve this:

DECLARE @fgName AS VARCHAR(10)

SET @fgName = CASE WHEN EXISTS(SELECT groupname
                                FROM sysfilegroups
                                WHERE groupname = 'MY_INDEX')
                    THEN QUOTENAME('MY_INDEX')
                    ELSE QUOTENAME('PRIMARY')
              END

ALTER TABLE [dbo].[mytable]
ADD CONSTRAINT [PK_mytable] PRIMARY KEY
(
    [myGuid] ASC
)
ON @fgName -- fails: 'incorrect syntax'

However, the last line fails as it appears a filegroup cannot be specified by variable.

Is this possible?

  • 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-15T10:48:12+00:00Added an answer on May 15, 2026 at 10:48 am

    I’ve found that dynamic sql works when passing variables in DDL statements.

    Try something like this:

    DECLARE @fgName AS VARCHAR(10) 
    
    SET @fgName = CASE WHEN EXISTS(SELECT groupname 
                                    FROM sysfilegroups 
                                    WHERE groupname = 'MY_INDEX') 
                        THEN QUOTENAME('MY_INDEX') 
                        ELSE QUOTENAME('PRIMARY') 
                  END 
    
    DECLARE @sql as varchar(1024)
    
    SET @sql = 'ALTER TABLE [dbo].[mytable] ADD CONSTRAINT [PK_mytable] PRIMARY KEY ( 
        [myGuid] ASC ) ON ' + @fgName
    
    EXEC(@sql)
    

    I hope that helps….

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I want to run this on my table: ALTER TABLE table_name MODIFY col_name VARCHAR(255)
In Microsoft SQL Server, I want to alter a field to NOT NULL AND
I want to alter a table from INNODB to MEMORY ENGINE. So I typed
I want to alter a table if that column already exists. If it doesn't
Basically I want to alter the boolean value selecting from the table: e.g.: SELECT
I want to constrain a SQL Server decimal column to only allow -1,0,1 as
I have created two tables ORDERS and ORDERITEMS with the following constraint: alter table
I have SQL Server 2008 R2 and I want to set a unique column.
Let's say, I have a normal normalized database like this: CREATE TABLE `users` (
I want to add a new column CreatedBy to a table PerformanceData. I want

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.