MS-SQL Server - obtain pk from columns?

Ask a Question related to Coldfusion Database Access, Design and Development.

  1. #1

    Default MS-SQL Server - obtain pk from columns?

    Hi all,
    I have cfmx7 along with ms-sql2000. Given column names and table name which I
    obtain dynamically, how can I find out which column(s) is/are the primary key
    one? I was thinking of using store procedure to that, but I don't have that
    much knowledge. Any comment or suggestion is appreciated.

    stallionmvp Guest

  2. Similar Questions and Discussions

    1. I do not obtain to connect in Flash Media Server !!
      Hi people I do not obtain to connect in Flash Media Server after that I installed it !!! I go in Star > Programs > Macromedia > Flash Media...
    2. Datagrid columns and ntext (via sql server)
      Hi I've have some text inside a "ntext" data field from SQL server. I am displaying this text as a column in a datagrid using ASP.NET 1.1 and...
    3. Can't get value from datagrid when generating columns on the server side
      Hi I have a problem with a datagrid, I need to get a value from one of the columns from when I hit a hyperlink column. The hyperlink column is...
    4. rename columns in sql server
      hi group, am i stupid or what. I try to rename a column name via asp and getting errors all the time. what would be the right syntax: alter...
    5. Pad strings/concatenate columns to simulate data columns in ASP select box with SQL Server 2K
      Dale, Cast all the data to fixed character data type in your select statement. For example: select cast(au_id as char(12)) +...
  3. #2

    Default Re: MS-SQL Server - obtain pk from columns?

    You should be able to retrieve primary key information by using one or more of
    the system "views" in MS SQL 2000. I can't remember the exact syntax offhand,
    but you can find the views in the documentation under INFORMATION_SCHEMA.(view
    name).

    HTH

    mxstu Guest

Posting Permissions

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

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139