Results 1 to 3 of 3

Thread: Query to return all user table names

  1. #1
    John Caro Guest

    Query to return all user table names


    Hi all,
    I am newbie VB to SQL. I want to write a SQL statement that will return the user table names
    of a database without having to open it in enterprise manager or an explorer.
    Thank you for help on this basic question.
    John Caro

  2. #2
    Markus Guest

    Query to return all user table names (reply)

    SELECT name from sysobjects
    WHERE type = 'U'


    ------------
    John Caro at 3/15/01 11:32:37 PM


    Hi all,
    I am newbie VB to SQL. I want to write a SQL statement that will return the user table names
    of a database without having to open it in enterprise manager or an explorer.
    Thank you for help on this basic question.
    John Caro

  3. #3
    John Caro Guest

    Query to return all user table names (reply)


    Thank You

    ------------
    Markus at 3/16/01 2:49:05 AM

    SELECT name from sysobjects
    WHERE type = 'U'


    ------------
    John Caro at 3/15/01 11:32:37 PM


    Hi all,
    I am newbie VB to SQL. I want to write a SQL statement that will return the user table names
    of a database without having to open it in enterprise manager or an explorer.
    Thank you for help on this basic question.
    John Caro

Posting Permissions

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