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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 2, 20262026-06-02T00:23:05+00:00 2026-06-02T00:23:05+00:00

I want to specify a specific file or file group for saving a specific

  • 0

I want to specify a specific file or file group for saving a specific table in a database. how can i do this?

  • 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-06-02T00:23:07+00:00Added an answer on June 2, 2026 at 12:23 am

    You need to be more specific. You can determine the data files that are available in a database by saying:

    SELECT name, physical_name, state_desc, size, max_size, is_read_only
      FROM databasename.sys.database_files  
      WHERE type_desc = 'ROWS';
    

    And you can see the filegroups here:

    SELECT name, type_desc, is_read_only 
      FROM sys.filegroups;
    

    But how you qualitatively pick one for creating as the destination for a new table? <shrug> – depends on how you want to decide, which we don’t know. You can determine a little more qualitative information using this join:

    SELECT FileGroupName = fg.name, FileGroupType = fg.type_desc, 
        FileGroupReadOnly = fg.is_read_only, 
        [FileName] = f.name, [FileLocation] = f.physical_name, 
        [FileState] = f.state_desc, f.size, f.max_size, 
        FileReadOnly = f.is_read_only
    FROM sys.filegroups AS fg
    LEFT OUTER JOIN sys.database_files AS f
    ON fg.data_space_id = f.data_space_id
    ORDER BY fg.data_space_id;
    

    Which will show you the files in each filegroup, their state/location/size and will show when you have unused filegroups as well (all the file columns will be NULL for those rows). So these details may help you determine which filegroup to specify.

    When you’ve decided which filegroup to use, you can say:

    CREATE TABLE dbo.foo(...) ON FileGroupName;
    

    You can see the full syntax for CREATE TABLE here. You didn’t specify the version so you may have to pick the appropriate selection from the “Other versions” drop-down.

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

Sidebar

Related Questions

I have my html table, and I want to specify the height of each
Can I specify I want the preceding character to be either (NOT A DIGIT)
I want to make a cloning or mapping function where I can specify (once)
In linux, how can I give access permissions to a file/folder to a specific
You can specify one buffer for your file stream like that: char buf[BUFFER_SIZE]; std::ofstream
Hi stackoverflow world, I want to specify in a XSD that a specific element
I want to deploy my application. i followed this step but i can't get
I want to specify a project to be opened when I launch Delphi(D2010). Is
I want to specify that either fieldname or freetext must always be present in
I want to specify the FileSystemWatcher to check the files in the system has

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.