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

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 24, 20262026-05-24T18:20:44+00:00 2026-05-24T18:20:44+00:00

When I imported a table in SQL it suggested real datatype, now I would

  • 0

When I imported a table in SQL it suggested real datatype, now I would like to change all columns to double type…

Is there any script to automatically do this in SQL Managment Studio

My table is 500 columns:

`After doing` EXECUTE sp_help traS

Col Type  Comp len Prec Scale   Nullable TrimTrailing Fixed Collation
------------------------------------------------------------------------------- 
x1  real    no  4   24      NULL    yes (n/a)   (n/a)   NULL
x2  real    no  4   24      NULL    yes (n/a)   (n/a)   NULL
x3  real    no  4   24      NULL    yes (n/a)   (n/a)   NULL
x4  real    no  4   24      NULL    yes (n/a)   (n/a)   NULL
...
x500 real   no  4   24      NULL    yes (n/a)   (n/a)   NULL
  • 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-24T18:20:44+00:00Added an answer on May 24, 2026 at 6:20 pm

    The following code will place a list of columns into a temporary table called @cols, loop through that table, generate an alter table alter column statement, and execute it for each column.

    If you need to exclude columns, you should include those in the NOT IN predicate of the select from information_schema.columns.

    declare @cols table (i int identity, colname varchar(100))
    insert into @cols
    select column_name
    from information_schema.COLUMNS
    where TABLE_NAME = 'yourtable'
    and COLUMN_NAME not in ('exclude1', 'exclude2')
    
    declare @i int, @maxi int
    select @i = 1, @maxi = MAX(i) from @cols
    
    declare @sql nvarchar(max)
    
    while(@i <= @maxi)
    begin
        select @sql = 'alter table yourtable alter column ' + colname + ' decimal(18,4) NULL'
        from @cols
        where i = @i
    
        exec sp_executesql @sql
    
        select @i = @i + 1
    end
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

When I imported a table in SQL it suggested real datatype, now I would
I have a table that was imported as all UPPER CASE and I would
I have to migrate database from mysql to ms sql server 2005.I imported table
I have a table with 600+ columns imported from a CSV file with special
Here's the scenario: TABLE 1 (client table. imported into sql server via a csv
I erroneously delete all the rows from a MS SQL 2000 table that is
I have a SQL Server table with fields: id, city, country . I imported
I have bulk records that are getting imported into a SQL Server 2005 table.
I have a large table I imported from an Excel spreadsheet. For five of
I have the following table structure, which is imported into an Entity Framework project:

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.