Results 1 to 3 of 3

Thread: valid table name?

  1. #1
    Join Date
    Jun 2005
    Posts
    28

    valid table name?

    CREATE TABLE [X.Y.TEST]
    (
    Test1 decimal(38,0) NULL,
    Test2 decimal(38,0) NULL,
    Test3 decimal(38,0) NULL
    )
    go

    IF OBJECT_ID('[X.Y.TEST]') IS NOT NULL
    PRINT '<<< CREATED TABLE X.Y.TEST >>>'
    ELSE
    PRINT '<<< FAILED CREATING TABLE X.Y.TEST >>>'
    Go



    is [X.Y.TEST] tablename?

    I execute the above ddl in MS SQL 2000 and then extract it using ER/studio. Er/studio only extract the table without the columns

    please advise

  2. #2
    Join Date
    Sep 2002
    Location
    Fantasy
    Posts
    4,254
    [X.Y.TEST] is a valid table name in sql server 2000. What version of ER studio you are using?

  3. #3
    Join Date
    Jun 2005
    Posts
    28
    i am using ER661 3892

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •