Click here to Skip to main content
15,879,535 members
Home / Discussions / Database
   

Database

 
AnswerRe: Windows Run Command Pin
Eddy Vluggen1-Oct-12 5:09
professionalEddy Vluggen1-Oct-12 5:09 
QuestionRe: Windows Run Command Pin
jojoba20111-Oct-12 22:09
jojoba20111-Oct-12 22:09 
AnswerRe: Windows Run Command Pin
Eddy Vluggen2-Oct-12 0:58
professionalEddy Vluggen2-Oct-12 0:58 
QuestionRe: Windows Run Command Pin
jojoba20112-Oct-12 6:58
jojoba20112-Oct-12 6:58 
AnswerRe: Windows Run Command Pin
Eddy Vluggen2-Oct-12 8:08
professionalEddy Vluggen2-Oct-12 8:08 
QuestionMySQL Question Pin
SQL Ed28-Sep-12 4:21
SQL Ed28-Sep-12 4:21 
AnswerRe: MySQL Question Pin
Eddy Vluggen29-Sep-12 2:38
professionalEddy Vluggen29-Sep-12 2:38 
QuestionRemoving the updated row Pin
sindhuan28-Sep-12 1:48
sindhuan28-Sep-12 1:48 
Hi All
I have merged data into a new table say table1 from table2(need to do this every time data comes into table2..Both the tables have following columns Id,Period(which includes date and time)Constraint(flag is only for table1)
Once the data is merged into table1 the data in table2 gets deleted automatically.when a new data comes into table2 it checks whether the period(only date not the time) in table1 and table2 matches..If it gets matched then we update the constraint flag of table1 to "1". then we add this new data from table2 to table1..Then I should remove the old data...what I wanted to do now is remove the data whose contraint flag is 1 from table1

I have given the code what I have done..Can some one help how to proceed

MERGE INTO table1 AS t1
USING table2 AS t2
ON t1.Id=t2.UsagePointId

WHEN MATCHED THEN
UPDATE SET
AND t1.period=t2.period
t1.constraint=0

WHEN NOT MATCHED THEN
INSERT (Id, period,constraint)
VALUES (t2.Id,t2.period, 0);


WITH x AS
(
SELECT t1.constraint
FROM table1 AS t1
JOIN table2 AS t2
ON t1.Id=t2.Id
AND t1.period =t2.period
)
UPDATE x
SET constraint=1;
WHERE t1.period AS DATE =upi.t2.period AS DATE
QuestionMySQL sql statement question Pin
Jassim Rahma27-Sep-12 9:28
Jassim Rahma27-Sep-12 9:28 
AnswerRe: MySQL sql statement question Pin
jschell27-Sep-12 10:12
jschell27-Sep-12 10:12 
GeneralRe: MySQL sql statement question Pin
Jassim Rahma27-Sep-12 11:08
Jassim Rahma27-Sep-12 11:08 
GeneralRe: MySQL sql statement question Pin
Eddy Vluggen29-Sep-12 2:42
professionalEddy Vluggen29-Sep-12 2:42 
QuestionIs there a try/finally construct in sqlcmd with -b option, guaranteed to execute the finally block? Pin
muhalet27-Sep-12 0:56
muhalet27-Sep-12 0:56 
AnswerRe: Is there a try/finally construct in sqlcmd with -b option, guaranteed to execute the finally block? Pin
Eddy Vluggen27-Sep-12 1:42
professionalEddy Vluggen27-Sep-12 1:42 
GeneralRe: Is there a try/finally construct in sqlcmd with -b option, guaranteed to execute the finally block? Pin
J4amieC27-Sep-12 2:51
J4amieC27-Sep-12 2:51 
QuestionRe: Is there a try/finally construct in sqlcmd with -b option, guaranteed to execute the finally block? Pin
Eddy Vluggen27-Sep-12 4:27
professionalEddy Vluggen27-Sep-12 4:27 
AnswerRe: Is there a try/finally construct in sqlcmd with -b option, guaranteed to execute the finally block? Pin
J4amieC27-Sep-12 21:29
J4amieC27-Sep-12 21:29 
Questionsql script Pin
sindhuan26-Sep-12 20:08
sindhuan26-Sep-12 20:08 
AnswerRe: sql script Pin
Ingo26-Sep-12 21:10
Ingo26-Sep-12 21:10 
GeneralRe: sql script Pin
sindhuan26-Sep-12 21:21
sindhuan26-Sep-12 21:21 
AnswerRe: sql script Pin
Ingo26-Sep-12 21:44
Ingo26-Sep-12 21:44 
AnswerRe: sql script Pin
J4amieC26-Sep-12 21:46
J4amieC26-Sep-12 21:46 
GeneralRe: sql script Pin
sindhuan26-Sep-12 23:30
sindhuan26-Sep-12 23:30 
AnswerRe: sql script Pin
Ingo27-Sep-12 0:07
Ingo27-Sep-12 0:07 
GeneralRe: sql script Pin
Eddy Vluggen27-Sep-12 0:22
professionalEddy Vluggen27-Sep-12 0:22 

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.