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

Database

 
AnswerRe: ADO.Net Pin
pmarfleet26-Sep-07 4:10
pmarfleet26-Sep-07 4:10 
Questioncommand to display total tables from database Pin
subbu.sk26-Sep-07 1:39
subbu.sk26-Sep-07 1:39 
AnswerRe: command to display total tables from database Pin
Pete O'Hanlon26-Sep-07 1:45
mvePete O'Hanlon26-Sep-07 1:45 
GeneralRe: command to display total tables from database Pin
subbu.sk26-Sep-07 1:51
subbu.sk26-Sep-07 1:51 
AnswerRe: command to display total tables from database Pin
ganeshMohan26-Sep-07 1:51
ganeshMohan26-Sep-07 1:51 
AnswerRe: command to display total tables from database Pin
Venkataramuc26-Sep-07 23:38
Venkataramuc26-Sep-07 23:38 
QuestionValiadation by Matching two tables Pin
Vimalsoft(Pty) Ltd25-Sep-07 21:49
professionalVimalsoft(Pty) Ltd25-Sep-07 21:49 
AnswerRe: Valiadation by Matching two tables Pin
pmarfleet25-Sep-07 22:01
pmarfleet25-Sep-07 22:01 
I'm not sure what you are trying to do. Do you want to find the records in Table 2 that are not present in Table 1? If so, use the following query:

SELECT Num_key, Lis_key
FROM [Table 2]
WHERE NOT EXISTS
(SELECT TOP 1 *
FROM [Table 1]
WHERE Num_key = [Table 2].Num_key
AND Lis_key = [Table 2].Lis_key)


Paul

Paul Marfleet

GeneralRe: Valiadation by Matching two tables Pin
Vimalsoft(Pty) Ltd25-Sep-07 22:22
professionalVimalsoft(Pty) Ltd25-Sep-07 22:22 
GeneralRe: Valiadation by Matching two tables Pin
Paddy Boyd25-Sep-07 23:02
Paddy Boyd25-Sep-07 23:02 
GeneralRe: Valiadation by Matching two tables Pin
Vimalsoft(Pty) Ltd25-Sep-07 23:13
professionalVimalsoft(Pty) Ltd25-Sep-07 23:13 
GeneralRe: Valiadation by Matching two tables Pin
andyharman25-Sep-07 23:06
professionalandyharman25-Sep-07 23:06 
GeneralRe: Valiadation by Matching two tables Pin
Vimalsoft(Pty) Ltd25-Sep-07 23:29
professionalVimalsoft(Pty) Ltd25-Sep-07 23:29 
GeneralRe: Valiadation by Matching two tables Pin
andyharman26-Sep-07 3:56
professionalandyharman26-Sep-07 3:56 
Questiondeleting duplicate rows Pin
joemonvarghese25-Sep-07 19:39
joemonvarghese25-Sep-07 19:39 
AnswerRe: deleting duplicate rows Pin
John-ph25-Sep-07 23:38
John-ph25-Sep-07 23:38 
GeneralRe: deleting duplicate rows Pin
joemonvarghese26-Sep-07 19:16
joemonvarghese26-Sep-07 19:16 
QuestionError: SP has too many arguments speified Pin
Giri K25-Sep-07 19:25
Giri K25-Sep-07 19:25 
AnswerRe: Error: SP has too many arguments speified Pin
gauthee25-Sep-07 19:41
gauthee25-Sep-07 19:41 
GeneralRe: Error: SP has too many arguments speified Pin
Giri K26-Sep-07 1:41
Giri K26-Sep-07 1:41 
Questionsproc timing out from c#, fine in analyser Pin
berghain25-Sep-07 11:33
berghain25-Sep-07 11:33 
AnswerRe: sproc timing out from c#, fine in analyser Pin
berghain25-Sep-07 22:30
berghain25-Sep-07 22:30 
Questionthreading And Distributed transaction Pin
Fadi Abu-Mathkour25-Sep-07 7:56
Fadi Abu-Mathkour25-Sep-07 7:56 
AnswerPlease read the forum guidelines Pin
leckey25-Sep-07 8:12
leckey25-Sep-07 8:12 
QuestionHow to autoincrement primary key type id in mssql 2000? Pin
Shahriat Hossain25-Sep-07 4:07
Shahriat Hossain25-Sep-07 4:07 

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.