Click here to Skip to main content
15,896,359 members
Home / Discussions / Database
   

Database

 
AnswerRe: Failed to open a Row set Pin
Mycroft Holmes26-Oct-09 22:47
professionalMycroft Holmes26-Oct-09 22:47 
GeneralRe: Failed to open a Row set Pin
haleemasher27-Oct-09 20:07
haleemasher27-Oct-09 20:07 
QuestionCrystal Reports Pin
kheer25-Oct-09 23:24
kheer25-Oct-09 23:24 
AnswerRe: Crystal Reports Pin
Jörgen Andersson26-Oct-09 0:05
professionalJörgen Andersson26-Oct-09 0:05 
GeneralPre-populate capture records for one day. Pin
Brady Kelly25-Oct-09 5:31
Brady Kelly25-Oct-09 5:31 
GeneralRe: Pre-populate capture records for one day. Pin
Mycroft Holmes26-Oct-09 14:28
professionalMycroft Holmes26-Oct-09 14:28 
Questionfind missing numbers in table using sql Pin
g_amol24-Oct-09 19:51
g_amol24-Oct-09 19:51 
AnswerRe: find missing numbers in table using sql Pin
Niladri_Biswas24-Oct-09 20:17
Niladri_Biswas24-Oct-09 20:17 
Try this

declare @Table1 table(id int)
insert into @Table1
select 1 union all select 2 union all select 3 union all select 4 union all
select 5 union all select 6 union all select 7 union all select 8

declare @Table2 table(id int)
insert into @Table2
select 1 union all select 2 union all select 5 union all select 8

Solution 1:

select id from  @Table1 except select id from  @Table2


Solution 2:

select id from  @Table1 where id not in (select id from  @Table2)


Let me know in case of any concern
Smile | :)

Niladri Biswas

QuestionHow do I setup a Linked Server in SQL to an ODBC connection pointed to a secure Access DB? Pin
8xFather23-Oct-09 16:12
8xFather23-Oct-09 16:12 
QuestionImporting data?? [modified] Pin
Muammar©23-Oct-09 10:47
Muammar©23-Oct-09 10:47 
AnswerRe: Importing data?? Pin
Not Active23-Oct-09 11:44
mentorNot Active23-Oct-09 11:44 
GeneralRe: Importing data?? Pin
Muammar©23-Oct-09 19:49
Muammar©23-Oct-09 19:49 
GeneralRe: Importing data?? Pin
Muammar©24-Oct-09 11:13
Muammar©24-Oct-09 11:13 
Questiontentative of reconnection to sql server Pin
MrKBA23-Oct-09 1:47
MrKBA23-Oct-09 1:47 
QuestionBackup & recovery of Oracle 10g database Pin
diptipanchal23-Oct-09 1:00
diptipanchal23-Oct-09 1:00 
AnswerRe: Backup & recovery of Oracle 10g database Pin
Chris Meech23-Oct-09 9:49
Chris Meech23-Oct-09 9:49 
QuestionImage Pin
rdop22-Oct-09 19:20
rdop22-Oct-09 19:20 
AnswerRe: Image Pin
Christian Graus22-Oct-09 19:30
protectorChristian Graus22-Oct-09 19:30 
GeneralRe: Image Pin
rdop22-Oct-09 19:50
rdop22-Oct-09 19:50 
GeneralRe: Image Pin
Christian Graus22-Oct-09 20:18
protectorChristian Graus22-Oct-09 20:18 
AnswerRe: Image Pin
εїзεїзεїз24-Oct-09 2:44
εїзεїзεїз24-Oct-09 2:44 
GeneralRe: Image Pin
Christian Graus24-Oct-09 10:30
protectorChristian Graus24-Oct-09 10:30 
GeneralRe: Image Pin
εїзεїзεїз24-Oct-09 19:26
εїзεїзεїз24-Oct-09 19:26 
Questionquery needed Pin
Ashok Nalam22-Oct-09 12:00
Ashok Nalam22-Oct-09 12:00 
AnswerRe: query needed Pin
i.j.russell22-Oct-09 12:10
i.j.russell22-Oct-09 12:10 

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.