Exists is a keyword or function in many languages, especially in SQL.
1
vote
3answers
1k views
External App: Check if an Outlook Folder exists
SOLUTION BELOW
I've been looking all over the net to find a solution for this, but it seems quite hard to get an answer for this in Delphi...
Skip this if you're familiar with Outlook
Some ...
1
vote
2answers
141 views
check if a table exsist in where
This query generates an error because table2 doesn't exist:
Select * FROM table WHERE table2.id IS NOT NULL
Is there anything like this for check the table2 before apply the check on the id?
...
1
vote
1answer
891 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 ...
1
vote
3answers
271 views
What do you put in a subquery's Select part when it's preceded by Exists?
What do you put in a subquery's Select part when it's preceded by Exists?
Select *
From some_table
Where Exists (Select 1
From some_other_table
Where ...
1
vote
1answer
2k views
Mysql Query : Where clause if Exists
I have a MySQL db and inside it a table called ProductMaster with 6 fields "Product_Id,Product_Name,Model,Opening_date,Closing_Date,Status".
Opening_Date and Closing Date Can accept null values.So ...
1
vote
1answer
26 views
MySQL EXISTS() errors
I am getting errors from mysql when using the EXISTS function. I would go the ON DUPLICATE KEY route but the 'str' field has to be a TEXT type.
Here is my table:
CREATE TABLE ...
1
vote
3answers
61 views
File created but returns false
I don't understand why we don't enter in the second if. I first check if the file exists (no, logic), I create it, and I check again but it still returns false. I tried an hour find the problem and ...
1
vote
1answer
258 views
C# Directory does not exist error when it does exist
As title explains, I have a program that checks if a directory exists before continuing.
And when the check is made it, it says the directory doesn't exist when it does!
Here's the code for storing ...
1
vote
3answers
203 views
Checking if file with file-extension '.ini' exists, shell
How do I check (with the shell) if a file with the file-extension .ini exists in /dir?
What would be the fastest way? Thanks!
1
vote
3answers
666 views
MySql - only update some rows if the table exists - do not want an error thrown
I want to run an update query.
The query will be run against multiple databases - not every database will have the table.
I don't want the update to be attempted if the table does not exist. I ...
1
vote
1answer
286 views
Apache rewrite to other directory, if file exists there
My directories look like this:
/assets
/images
/2011
/2012
/images-hq
/2011
/2012
In the html file every image has a tag like:
<img src="/assets/images/2012/example.jpg" ...
1
vote
1answer
259 views
How do I get the entity framework to lookup whether related data EXISTS in a related table?
I am working on making an entity framework project more scalable to suit our requirements. The project uses an EDMX file, Entity Framework, and .NET 4.0. The project has globally setup lazy loading.
...
1
vote
1answer
383 views
Problems with IF EXISTS()
When I try to run update a credit card type by passing in the @ID and @Name I get an error that says:
Msg 2786, Level 16, State 1, Procedure sp_SaveCreditCardType, Line 29
The data type of ...
1
vote
3answers
1k views
Javascript Finding if Function/Class exists before calling it
I know how to check to see if a property of the global context exists. Any variation of
if (typeof myFunction != 'undefined'){...}
but what if I don't know the name of the function? I think ...
1
vote
3answers
928 views
MongoDB C# - Getting BsonDocument for an Element that doesn't exist
So I have a BsonDocument b (let's say it has FirstName, LastName, Age), which you could access as b["FirstName"], etc...
If I try to do b["asdfasdf"] (which doesn't exist of course), instead of ...
1
vote
3answers
1k views
Android: How to detect a directory in the assets folder?
I'm retrieving files like this
String[] files = assetFiles.list("EngagiaDroid");
How can we know whether it is a file or is a directory?
I want to loop through the directories in the assets ...
1
vote
2answers
2k views
Java does not know when file does NOT exist [closed]
Java knows when a file exists as it prints out "File found" but when the file does not exists it does NOT print "File not found"
File file = new File(filePath, "Test_1.exe");
if ...
1
vote
3answers
840 views
How can I chain together SELECT EXISTS() queries?
I have this simple query
SELECT EXISTS(SELECT a FROM A WHERE a = 'lorem ipsum');
That will return a 0 or 1 if there exists a row in A that contains 'lorem ipsum'
I would like to chain this ...
1
vote
1answer
632 views
count rows in joined table but display 0 if no rows exist - mysql
The response header table is a joined table which is counted to display responses to a particular survey. If there are no rows, hence no responses, I want the count to display 0. But instead it is ...
1
vote
3answers
1k views
SQL Conditional Column Existence
Can I somehow select a column if exists in a view, but ignore the column if it does not exist?
SELECT
CASE
WHEN EXISTS(SELECT 1 FROM INFORMATION_SCHEMA.COLUMNS WHERE TABLE_NAME = 'MyView' ...
1
vote
1answer
101 views
Stored procedure if exists not giving correct answer
I created a sql 2005 stored proc to tell me if the CRID I am searching for is approved by the supervisor. [SuperApproved] is a bit, [CRID] is char(36). Even if the CRID doesn't exist, I am still ...
1
vote
1answer
5k views
Does File exist in Python? [duplicate]
Possible Duplicate:
Pythonic way to check if a file exists?
How can Check if file exist with python 2.6?
If file exists run exec redo.py.
If file does not exists exec file start.py
The ...
1
vote
2answers
1k views
Creating a MySQL trigger to verify data on another table
I am trying to set up a MySQL trigger that does the following:
When someone inserts data into databaseA.bills, it verifies if databaseB.bills already has that row, if it doesn't, then it does an ...
1
vote
1answer
712 views
Watir question regarding exist on a class for testing purposes
I have a button on my page that changes depending on what radio button is clicked. The button has the same text on it with the same id, but different classes. How do I test if the two different ...
1
vote
3answers
603 views
SQL : Tricky If Exists query needed to check overlapped values
I am having a table in SQL server which stores MINIMUM_AMOUNT,MAXIMUM_AMOUNT and CURRENCY_ID
Now i want to frame an SQL query which will check the new values to be inserted are already existing in ...
1
vote
2answers
1k views
jQuery: Check if a element exists (which could possibly be added through ajax)
I already know how to check elements that are there when the document is ready:
jQuery.fn.exists = function () {
return jQuery(this).length > 0;
}
But this method doesn’t know elements that ...
1
vote
3answers
377 views
Determine existence of results in jet SQL?
In Jet, I want to test if certain conditions return any results.
I want a query which returns exactly one record: "true" if there are any results, "false" otherwise.
This works in MS SQL:
SELECT
...
1
vote
1answer
325 views
INSERT IF NOT EXISTS type function for me to use without turning the column into primary key?
This script I'm working on is taking data from the web using python's urllib2 module and then putting it in a table. This data is basically just going to be in a table with one column and one row. ...
1
vote
3answers
3k views
Inserting an object to the db using hibernate, only if it doesn't exist
Let's say I have a mapped User object with a user_id as a primary key, and a mail column with a unique constraint.
I want my program to save a User object to the users table only if it doesn't exist.
...
1
vote
3answers
190 views
Why doesn't this IF NOT EXISTS statement work?
I'm trying to write a query which will INSERT a random value between 0 to 9999 INTO a table, whereas this random value is yet to exist there.
However, nothing I wrote works. It seems like a WHERE ...
1
vote
4answers
65 views
SQL IN working but NOT IN does not work
I have this query that will return correctly the values that are part of the IN clause, but when I change it to NOT IN, it does not return anything.
Does anyone have any suggestions?
select distinct
...
1
vote
1answer
58 views
SqlAlchemy Core and bare exists query
I have faced a problem where I have to find if the data exists in the table using SqlAlchemy Core.
I think the best way to do this query is to use exists method, which stops searching as soon as the ...
1
vote
3answers
907 views
mysql insert if value not exist in another table
I have two tables that store value as VARCHAR.
I'm populating table and I want just insert values in one of tables if they are not exist in other table.
Something like:
INSERT IF IS EMPTY(SELECT * ...
1
vote
1answer
144 views
How can I check whether a NSManagedObject already exist in coredata by my primary key?
I use this method,but not correct.
- (BOOL)checkExistByEntityName:(NSString *)entityName primaryKeyName:(NSString *)keyName primaryKey:(NSNumber *)primaryKey
{
NSFetchRequest *request = ...
1
vote
1answer
183 views
perl how to use exists to check if hash is in array of hashes
i have two array of hashes: AH1 and AH2.
$AH1 = [
{
'id' => 123,
'name' => abc
},
{
'id' => 456,
...
1
vote
3answers
54 views
MySQL Query - Any issues in this? [closed]
Do you see any issues with this MySQL query? It does not execute.
Any other better ideas?
INSERT INTO registration
( m_ID, e_ID, STATUS)
SELECT
:m_ID, :e_ID, 1
WHERE
EXISTS ( SELECT ...
1
vote
3answers
192 views
SQL - Exists comparison
I need to select rows that have one treated row for one country and there exists one untreated row for the same country. For below table I would then return row with id 1.
So first I need to ...
1
vote
1answer
106 views
Sqlalchemy exists with joined inheritance and Firebird
I tried to use sqlaclhemy joined table inheritance and had a strange occurrence.
class CommonObject(Base):
__tablename__ = "objects"
id = Column("objid", Integer, primary_key=True)
...
1
vote
2answers
410 views
MYSQL - insert into and a null value, how to avoid?
I have a SQL query, it looks like that:
insert into tableA(order_id, contractnotenumber, shipmentdate, comment)
values ((select entity_id from tableb where increment_id = '12345678'),
'', ...
1
vote
1answer
228 views
JML: \exists & JMLObjectSequence
im trying to prove if there exists a object with a particular status in my collection. My collection consists of objects with a method called getStatus(). Now i want to prove if there is a object with ...
1
vote
3answers
304 views
SQL SMS - Error - There is already an object named “genre” in the database
I'm trying to create a hypothetical videostore database and this error message comes up everytime I execute this query:
DROP DATABASE videostore
CREATE DATABASE videostore
CREATE TABLE genre
(
...
1
vote
1answer
698 views
Exists Query for multilple Document in Mongodb using java driver
If we want to check that the record is exists in Collection or not, then there is an operator $exists in Mongodb. But if we want to know multiple records exists in Collection then how can we check ...
1
vote
1answer
1k views
Received file exists in Photo Library
I need to check that the received file exists in Photo Library
Let me explain below
I transferred/synced one photo Library image/video from one Ipad(sender) to another Ipad(receiver) Photo Library ...
1
vote
2answers
242 views
in mysql, is the NOT EXISTS function much more performance costly than UNION?
I want to fill a table with data that might be overlapping. I do this a few times in the code. so, the first time it is
INSERT INTO A (SELECT * FROM B)
and then the second time it is
INSERT INTO A
...
1
vote
1answer
931 views
MySQL where exists, how does mySQL link the rows?
I'm having a problem grokking this code
SELECT * FROM sometable WHERE EXISTS (
SELECT 1 FROM sometable
GROUP BY relevant_field
HAVING count(*) > 1)
If I use a JOIN, I specify the link ...
1
vote
2answers
2k views
1
vote
1answer
419 views
How to make a SUM with conditions?
I need to create an SQL query for the calculation of hours of employees who work for a specific customer (n°108538). We differentiate two types of counting: those who worked the whole week (37h50) and ...
1
vote
1answer
143 views
Is there alternative way to write this query?
I have tables A, B, C, where A represents items which can have zero or more sub-items stored in C. B table only has 2 foreign keys to connect A and C.
I have this sql query:
select * from A
where ...
1
vote
1answer
99 views
How to return a message from my repository class to my controller and then to my view in asp.net-mvc?
I use this for checking an existing emailId in my table and inserting it...It works fine how to show message to user when he tries to register with an existing mailId....
if ...
1
vote
1answer
143 views
How to change the extension of a processed xml file (using eXist & cocoon)
I'm really new to this whole web stuff, so please be nice if I missed something important to post.
Short: Is there a possibility to change the name of a processed file (eXist-DB) after serialization?
...

