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

Database

 
Questionsql server 2005 query xml datatype fields Pin
arkiboys5-Nov-08 2:55
arkiboys5-Nov-08 2:55 
AnswerRe: sql server 2005 query xml datatype fields Pin
Wendelius5-Nov-08 10:33
mentorWendelius5-Nov-08 10:33 
GeneralRe: sql server 2005 query xml datatype fields Pin
arkiboys5-Nov-08 10:54
arkiboys5-Nov-08 10:54 
GeneralRe: sql server 2005 query xml datatype fields Pin
Wendelius5-Nov-08 11:13
mentorWendelius5-Nov-08 11:13 
GeneralRe: sql server 2005 query xml datatype fields Pin
arkiboys6-Nov-08 1:50
arkiboys6-Nov-08 1:50 
GeneralRe: sql server 2005 query xml datatype fields Pin
Wendelius6-Nov-08 7:06
mentorWendelius6-Nov-08 7:06 
Questiontransfering data fro one table to another Pin
prasadbuddhika5-Nov-08 1:07
prasadbuddhika5-Nov-08 1:07 
AnswerRe: transfering data fro one table to another Pin
Ashfield5-Nov-08 1:34
Ashfield5-Nov-08 1:34 
If you want to update table2 from the matchuing records in table 1 and then insert any new ones

Update table2
set col1 = a.col1,.....
from table2 b, table1 a 
where b.primarykeycol = a.primarykeycol

insert into table2
select col1,col2.... from table1 a
where not exists (select 1 from table2 b where b.primarykeycol = a.primarykeycol)


If you don't want to update table2 ignore the update.

Bob
Ashfield Consultants Ltd

GeneralRe: transfering data fro one table to another Pin
prasadbuddhika5-Nov-08 16:08
prasadbuddhika5-Nov-08 16:08 
GeneralRe: transfering data fro one table to another Pin
Ashfield5-Nov-08 21:01
Ashfield5-Nov-08 21:01 
GeneralRe: transfering data fro one table to another Pin
Muditha Dissanayake6-Nov-08 4:39
Muditha Dissanayake6-Nov-08 4:39 
Questionwhere can i find the northwind sql script Pin
prasadbuddhika4-Nov-08 23:58
prasadbuddhika4-Nov-08 23:58 
AnswerRe: where can i find the northwind sql script Pin
cyber-drugs5-Nov-08 0:12
cyber-drugs5-Nov-08 0:12 
GeneralRe: where can i find the northwind sql script Pin
prasadbuddhika5-Nov-08 0:34
prasadbuddhika5-Nov-08 0:34 
GeneralRe: where can i find the northwind sql script Pin
cyber-drugs5-Nov-08 0:41
cyber-drugs5-Nov-08 0:41 
AnswerRe: where can i find the northwind sql script Pin
Wendelius5-Nov-08 10:38
mentorWendelius5-Nov-08 10:38 
QuestionFiltering Query results Pin
Andy_L_J4-Nov-08 23:28
Andy_L_J4-Nov-08 23:28 
AnswerRe: Filtering Query results Pin
J4amieC5-Nov-08 0:57
J4amieC5-Nov-08 0:57 
GeneralRe: Filtering Query results Pin
Andy_L_J5-Nov-08 1:36
Andy_L_J5-Nov-08 1:36 
QuestionError while executing Query Pin
praveenkumar_k4-Nov-08 20:50
praveenkumar_k4-Nov-08 20:50 
AnswerRe: Error while executing Query Pin
Wendelius5-Nov-08 10:43
mentorWendelius5-Nov-08 10:43 
Questionconnection string Pin
LiYS4-Nov-08 19:15
LiYS4-Nov-08 19:15 
AnswerRe: connection string Pin
Giorgi Dalakishvili4-Nov-08 20:05
mentorGiorgi Dalakishvili4-Nov-08 20:05 
GeneralRe: connection string Pin
LiYS4-Nov-08 20:18
LiYS4-Nov-08 20:18 
GeneralRe: connection string Pin
Giorgi Dalakishvili4-Nov-08 20:25
mentorGiorgi Dalakishvili4-Nov-08 20:25 

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.