Click here to Skip to main content
15,914,165 members
Home / Discussions / Database
   

Database

 
GeneralRe: Database Frontend Design Pin
Vagif Abilov31-Aug-02 2:48
professionalVagif Abilov31-Aug-02 2:48 
QuestionList user tables in a database?? Pin
Martin Haesemeyer29-Aug-02 3:09
Martin Haesemeyer29-Aug-02 3:09 
AnswerRe: List user tables in a database?? Pin
Mazdak29-Aug-02 3:46
Mazdak29-Aug-02 3:46 
GeneralRe: List user tables in a database?? Pin
Martin Haesemeyer29-Aug-02 7:35
Martin Haesemeyer29-Aug-02 7:35 
AnswerRe: List user tables in a database?? Pin
TigerNinja_29-Aug-02 4:50
TigerNinja_29-Aug-02 4:50 
GeneralRe: List user tables in a database?? Pin
Martin Haesemeyer29-Aug-02 8:38
Martin Haesemeyer29-Aug-02 8:38 
AnswerRe: List user tables in a database?? Pin
notadood29-Aug-02 8:41
notadood29-Aug-02 8:41 
AnswerRe: List user tables in a database?? Pin
Rein Hillmann13-Sep-02 6:19
Rein Hillmann13-Sep-02 6:19 
Try this (I'm not at a SQL box at the moment so it might not work 100%)

<br />
SELECT *<br />
FROM INFORMATION_SCHEMA.TABLES<br />
WHERE <br />
OBJECTPROPERTY(OBJECT_ID(QUOTENAME(TABLE_SCHEMA) + '.' + QUOTENAME(TABLE_NAME)), 'IsMSShipped') = 0<br />
AND TABLE_TYPE = 'BASE TABLE'<br />

GeneralImport/Export problem Pin
Shaun Wilde27-Aug-02 6:31
Shaun Wilde27-Aug-02 6:31 
GeneralRe: Import/Export problem Pin
notadood27-Aug-02 8:24
notadood27-Aug-02 8:24 
GeneralRe: Import/Export problem Pin
Shaun Wilde27-Aug-02 8:52
Shaun Wilde27-Aug-02 8:52 
GeneralRe: Import/Export problem Pin
notadood27-Aug-02 10:22
notadood27-Aug-02 10:22 
GeneralRe: Import/Export problem Pin
Shaun Wilde27-Aug-02 21:08
Shaun Wilde27-Aug-02 21:08 
GeneralRe: Import/Export problem Pin
Shaun Wilde28-Aug-02 8:47
Shaun Wilde28-Aug-02 8:47 
GeneralSQL Debugging Pin
Shaun Wilde27-Aug-02 4:42
Shaun Wilde27-Aug-02 4:42 
GeneralRe: SQL Debugging Pin
notadood27-Aug-02 4:44
notadood27-Aug-02 4:44 
GeneralRe: SQL Debugging Pin
AndyG28-Aug-02 6:45
AndyG28-Aug-02 6:45 
GeneralRe: SQL Debugging Pin
Shaun Wilde28-Aug-02 8:28
Shaun Wilde28-Aug-02 8:28 
GeneralRe: SQL Debugging Pin
notadood28-Aug-02 8:57
notadood28-Aug-02 8:57 
GeneralODBC.NET and Excel Pin
Knappen27-Aug-02 1:30
Knappen27-Aug-02 1:30 
GeneralRe: ODBC.NET and Excel Pin
Paul Riley27-Aug-02 4:55
Paul Riley27-Aug-02 4:55 
GeneralRetrieving QTY of records on a SQLClient Pin
toki24-Aug-02 11:30
toki24-Aug-02 11:30 
GeneralRe: Retrieving QTY of records on a SQLClient Pin
James T. Johnson24-Aug-02 13:50
James T. Johnson24-Aug-02 13:50 
GeneralRe: Retrieving QTY of records on a SQLClient Pin
Paul Ingles25-Aug-02 4:24
Paul Ingles25-Aug-02 4:24 
GeneralRe: Retrieving QTY of records on a SQLClient Pin
toki28-Aug-02 16:06
toki28-Aug-02 16:06 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.