Click here to Skip to main content
15,890,282 members
Home / Discussions / Database
   

Database

 
GeneralRe: Diff b/W ADO & ADO.net Pin
Mycroft Holmes24-Apr-08 20:19
professionalMycroft Holmes24-Apr-08 20:19 
GeneralTimeout Exception [modified] Pin
Vimalsoft(Pty) Ltd23-Apr-08 23:25
professionalVimalsoft(Pty) Ltd23-Apr-08 23:25 
GeneralRe: Timeout Exception Pin
Mike Dimmick24-Apr-08 4:15
Mike Dimmick24-Apr-08 4:15 
GeneralRe: Timeout Exception Pin
Vimalsoft(Pty) Ltd24-Apr-08 20:09
professionalVimalsoft(Pty) Ltd24-Apr-08 20:09 
GeneralRe: Timeout Exception Pin
GuyThiebaut24-Apr-08 5:52
professionalGuyThiebaut24-Apr-08 5:52 
GeneralRe: Timeout Exception Pin
Vimalsoft(Pty) Ltd24-Apr-08 20:03
professionalVimalsoft(Pty) Ltd24-Apr-08 20:03 
GeneralDropping all Tables Pin
Broken Bokken23-Apr-08 16:10
Broken Bokken23-Apr-08 16:10 
GeneralRe: Dropping all Tables Pin
Harini N K23-Apr-08 20:44
Harini N K23-Apr-08 20:44 
Try the following SQL statement:

First drop all the child tables and then go for parent tables:

USE NORTHWIND

<br />
SELECT <br />
OBJECT_NAME(c.parent_object_id) ParentTableName,<br />
OBJECT_NAME(c.referenced_object_id) ChildTableName<br />
FROM   <br />
sys.foreign_key_columns c  <br />
INNER JOIN   <br />
sys.columns a ON a.object_id = c.referenced_object_id AND a.column_id = c.referenced_column_id  <br />


Hope this helps!!

Harini

GeneralRe: Dropping all Tables Pin
Broken Bokken24-Apr-08 2:25
Broken Bokken24-Apr-08 2:25 
GeneralMissing table in SQL Server Pin
blakey40422-Apr-08 22:59
blakey40422-Apr-08 22:59 
GeneralRe: Missing table in SQL Server Pin
Marek Grzenkowicz22-Apr-08 23:36
Marek Grzenkowicz22-Apr-08 23:36 
GeneralRe: Missing table in SQL Server Pin
blakey40422-Apr-08 23:49
blakey40422-Apr-08 23:49 
GeneralRe: Missing table in SQL Server Pin
Marek Grzenkowicz23-Apr-08 1:27
Marek Grzenkowicz23-Apr-08 1:27 
AnswerRe: Missing table in SQL Server Pin
blakey40423-Apr-08 1:55
blakey40423-Apr-08 1:55 
GeneralConnectivity with SQl database Pin
Sankalp Verma22-Apr-08 22:56
Sankalp Verma22-Apr-08 22:56 
GeneralRe: Connectivity with SQl database Pin
Marek Grzenkowicz22-Apr-08 23:37
Marek Grzenkowicz22-Apr-08 23:37 
GeneralRe: Connectivity with SQl database Pin
Broken Bokken24-Apr-08 3:01
Broken Bokken24-Apr-08 3:01 
Generaltable-value function from ADO Pin
Green Fuze22-Apr-08 22:39
Green Fuze22-Apr-08 22:39 
AnswerRe: table-value function from ADO [modified] Pin
andyharman23-Apr-08 23:19
professionalandyharman23-Apr-08 23:19 
GeneralRe: table-value function from ADO Pin
Mark J. Miller24-Apr-08 10:17
Mark J. Miller24-Apr-08 10:17 
GeneralSlow running Insert/Update query for a specific db Pin
Maira K22-Apr-08 19:32
Maira K22-Apr-08 19:32 
GeneralRe: Slow running Insert/Update query for a specific db Pin
Ashfield22-Apr-08 21:21
Ashfield22-Apr-08 21:21 
GeneralRe: Slow running Insert/Update query for a specific db Pin
Maira K22-Apr-08 22:38
Maira K22-Apr-08 22:38 
GeneralRe: Slow running Insert/Update query for a specific db Pin
Ashfield23-Apr-08 2:21
Ashfield23-Apr-08 2:21 
GeneralInput string was not in a correct format Pin
chaitanya_dec2422-Apr-08 18:57
chaitanya_dec2422-Apr-08 18:57 

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.