0
votes
0answers
69 views

XQuery exists method [closed]

I am trying to get the following exists function to work, but I'm obviously doing something wrong. Essentially, what I want to see is a bit indicating if Exerciser EVER contained Y. So in my resultset ...
0
votes
1answer
499 views

Trying to change SQL statement to use EXISTS instead of IN

I was reading (and am still learning) about the difference between the EXISTS and IN operators in SQL. Is it possible to change the following statement so it uses an EXISTS rather than IN? I've tried ...
0
votes
1answer
20 views

helpp right a query - inside a trigger

I am renewing a record. I need to create a trigger that will automatically deactivate the old record. Records are renewed into a new table not the same. Values between the newly insert record and ...
0
votes
0answers
979 views

insert and update if a record exists else not , race condition

if exists (select itemcode from item where itemcode=1120) update item set itemname = 'laptop' where itemcode = 1120 else insert into item (itemcode,itemname) values (1120,'laptop') it will be ...
1
vote
3answers
805 views

update from one table to another if doesnt exist in the original table in sql server 2005

I have 2 tables with the same columns - T1, T2. I want to update table T1 columns from the columns that exist in T2 based on the key column: if the key column exists then update the rest of the ...
2
votes
2answers
2k views

TSQL NOT EXISTS Why is this query so slow?

Debugging an app which queries SQL Server 05, can't change the query but need to optimise things. Running all the selects seperately are quick <1sec, eg: select * from acscard, select id from ...
0
votes
4answers
96 views

How can I modify the following code to have the same results with “exists”?(SQL)

I have been trying for hours but I can't think of anything as exists only returns boolean and every time I am trying to use exists I either get back the entire list of results or none. This is the ...
0
votes
2answers
257 views

Script to drop an index if it exists that works in SQL Server 2005 AND SQL Server Compact 3.5

I have an application with a rather long chain of upgrade scripts. The application works in SQL Server 2005 - I'm trying to upgrade it so it will also work in SQL Compact 3.5 Part of the script ...
1
vote
1answer
894 views

If not exists statement in sql server 2005

How to write if not exists statement in sql server 2005 for the following condition If @MeasurementId say values (1,2,3) those are the existing values the below statement work but when ...
0
votes
1answer
877 views

Sql existence check for Xml Schema Collection?

Hey all, writing scripts for Sql Server 2005. I am registering a schema with CREATE XML SCHEMA COLLECTION [dbo].[MySchema] AS N'<xsd:schema ... >' Now, as I make changes, I would like to ...