ASP/SQL code for showing all DB info...

Ask a Question related to ASP Database, Design and Development.

  1. #1

    Default ASP/SQL code for showing all DB info...

    Hi there,
    I need some ASP/SQL code that will show the complete structure of a
    database. That is, all the exisiting table names, and all fields (and
    filed types) in those tables.

    Why?

    Because I am in a situation where I need to make major mods to an
    existing site that uses a SQL database without having any of the
    documentation about the database! I have no tools at my disposal,
    except what I can make myself through my ASP code and the db
    connection string. I donīt even know where the db exists! (It is a
    long story, so I will stop there...)

    There must be code that will show the database blueprint, which is the
    first step in me getting started...

    Thanks,

    Holden
    Holden Caulfield Guest

  2. Similar Questions and Discussions

    1. cf keeps showing error that doesn't exist in the code
      Hi, I'm having a troubles with CF MX7- it keeps showing error message about some missing closing tag but if I look at the code there's nothing...
    2. cf_ custom tags showing encrypted code?
      Today something strange started happening, one of our custom tags started showing the encrypted code in the web page. Has anyone else experienced...
    3. only code on ASP JS page showing
      I am a newbie at databases. I am trying to build dynamic pages using DW MX 2004 and I have to use a Filemaker Pro database from a client (a database...
    4. info palette not showing any numbers
      Hi Ann, I have tried all that without any luck. I have found out, itīs some kind of bug in the OS X. I made a disc image of the "Problem compuer"...
    5. Getting info about SSL session from code
      Hi, How can I retrieve SSL session details from ASP.NET web page code? I could get info about key size (by HTTPS_KEYSIZE variable) but I don't...
  3. #2

    Default Re: ASP/SQL code for showing all DB info...

    Holden Caulfield wrote:
    > Hi there,
    > I need some ASP/SQL code that will show the complete structure of a
    > database. That is, all the exisiting table names, and all fields (and
    > filed types) in those tables.
    >
    > Why?
    >
    > Because I am in a situation where I need to make major mods to an
    > existing site that uses a SQL database without having any of the
    > documentation about the database! I have no tools at my disposal,
    > except what I can make myself through my ASP code and the db
    > connection string. I donīt even know where the db exists! (It is a
    > long story, so I will stop there...)
    >
    > There must be code that will show the database blueprint, which is the
    > first step in me getting started...
    >
    > Thanks,
    >
    > Holden
    What kind of SQL database? SQL Server? What version? Access? What version?
    Oracle? ....

    Bob Barrows

    --
    Microsoft MVP - ASP/ASP.NET
    Please reply to the newsgroup. This email account is my spam trap so I
    don't check it very often. If you must reply off-line, then remove the
    "NO SPAM"


    Bob Barrows Guest

  4. #3

    Default Re: ASP/SQL code for showing all DB info...

    > I need some ASP/SQL code that will show the complete structure of a
    > database. That is, all the exisiting table names, and all fields (and
    > filed types) in those tables.
    [url]http://www.aspfaq.com/2177[/url]
    [url]http://www.aspfaq.com/2178[/url]

    --
    Aaron Bertrand
    SQL Server MVP
    [url]http://www.aspfaq.com/[/url]


    Aaron Bertrand [MVP] Guest

  5. #4

    Default Re: ASP/SQL code for showing all DB info...

    > Hi there,
    > I need some ASP/SQL code that will show the complete structure of a
    > database. That is, all the exisiting table names, and all fields (and
    > filed types) in those tables.

    Free lite edition of myLittleAdmin can help you :
    [url]http://www.myLittleTools.net/mla_sql[/url]

    hth
    el.c.

    --
    // myLittleTools.net : leading provider of web-based applications.
    // myLittleAdmin WebHosting Edition is now available
    // [url]http://www.mylittletools.net[/url]
    // [email]webmaster@mylittletools.net[/email]
    >
    > Why?
    >
    > Because I am in a situation where I need to make major mods to an
    > existing site that uses a SQL database without having any of the
    > documentation about the database! I have no tools at my disposal,
    > except what I can make myself through my ASP code and the db
    > connection string. I donīt even know where the db exists! (It is a
    > long story, so I will stop there...)
    >
    > There must be code that will show the database blueprint, which is the
    > first step in me getting started...
    >
    > Thanks,
    >
    > Holden

    el.c. - myLittleTools.net Guest

  6. #5

    Default Re: ASP/SQL code for showing all DB info...


    "Holden Caulfield" wrote:
    > Hi there,
    > I need some ASP/SQL code that will show the complete structure of a
    > database. That is, all the exisiting table names, and all fields (and
    > filed types) in those tables.
    This allows you to see structure, data and make modifications, including
    stored procedures.
    [url]http://www.standardreporting.net/1ClickDB/default.aspx[/url]
    >I donīt even know where the db exists! (It is a
    > long story, so I will stop there...)
    How can you make an ADODB connection without knowing where the database is?
    SQL is usually on a separate server and accessing it in ASP will identify
    the FQDN or the IP.

    --
    Roland

    This information is distributed in the hope that it will be useful, but
    without any warranty; without even the implied warranty of merchantability
    or fitness for a particular purpose.


    Roland Hall 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