Exists is a keyword or function in many languages, especially in SQL.
1
vote
2answers
38 views
C# Check if FTP Directory EXISTS
I have this FTP Method that checks if a directory exists. It works fine at the start, but now, it's still returning true even if the directory does not exists. I tried many things, and set breakpoint ...
0
votes
2answers
36 views
Insert SQL data into row with same id?
Is there a SQL command for inserting data into a row where the id = the table id, and if it doesnt exists then insert into a new row?
Something like:
('INSERT INTO USERS IF EXISTS WHERE ...
-2
votes
1answer
26 views
Exist error in subquery
I am trying to do some counts. The first sub query is the total scanned count. The second sub query is scanned count within 60 minutes. Sorry in advance for this being compressed. Both run correctly ...
-1
votes
2answers
49 views
MySQL EXISTS() really slow
This query
SELECT
itemID,
locationParentID,
locationID,
categoryParentID,
categoryID,
itemTitle,
itemDetails,
itemAttributes,
itemPictures,
itemFeatured,
...
0
votes
0answers
11 views
transform existing mysql table to first normal form
I have a huge mysql database (table with > 100mio rows) and need to migrate the data to a new schema. one of the changes in the new db will be to transform a table to first normal form, e.g.:
table ...
1
vote
3answers
42 views
Check if record exists from controller in Rails
In my app a User can create a Business. When they trigger the index action in my BusinessesController I want to check if a Business is related to the current_user.id:
If yes: display the business.
...
9
votes
9answers
8k views
Check if a database table exists using PHP/PDO
I want to check if a table with a specific name exists in a database I've connected to using PHP and PDO.
It has to work on all database backends, like MySQL, SQLite, etc.
-1
votes
1answer
7 views
Find a file type and verify a line exists replace if value is different than expected
I'm trying to write a batch file that will search a directory for a file type. After I find the file name I need to read the file to verify that a line exists and overwrite the line if different than ...
2
votes
7answers
13k views
check if MySQL table exists or not [duplicate]
Possible Duplicate:
MySQL check if a table exists without throwing an exception
I have a dynamic mysql query builder in my project that creates select queries from different tables.
I need ...
0
votes
2answers
22 views
Entity Framework: check if object exists and check if it has an associated object
In a many-to-many relationship between File and Category I want to check if a file exists and if so, if it has any categories (because there's a chance it may not have any) :
public bool ...
0
votes
0answers
20 views
Ant - Check SCP Remote File Exists
I have a remote location which an Ant SCP task copies files to.
I would also like a separate target in my build that checks if a file exists in this remote location.
However I cannot see a way to ...
1
vote
3answers
205 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!
0
votes
3answers
2k views
mysql create user if not exists
I have a query to check mysql users list for create new user.
IF (SELECT EXISTS(SELECT 1 FROM `mysql`.`user` WHERE `user` = '{{ title }}')) = 0 THEN
CREATE USER '{{ title }}'@'localhost' ...
1
vote
2answers
45 views
SQL IF/EXISTS Statement
i have two tables that could look like this..
table_gb:
ID: Author: Email: Login:
1. John Doe john@email.com 1
2. Jenn Smith ...
0
votes
2answers
48 views
as3 check if child exists - removeChild();
The code below creates a MovieClip called "circle" and checks if it exists and deletes it via removeChild(); It removed the circle but the [object MovieClip] is still there.
How can I check if a ...
1
vote
1answer
28 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 ...
571
votes
17answers
214k views
Is there an “exists” function for jQuery?
How can I check the existence of an element in jQuery?
The current code that I have is this:
if ($(selector).length>0) {
// Do something
}
Is there is a more elegant way to approach this? ...
1
vote
1answer
45 views
MySQL Insert where not exists query won't insert if even one row exists
I am having a pretty complicated query. What I have is a table with car parts (parts_list, about 600 rows) which contains some information about the part like it's name and if it's motor dependent or ...
0
votes
2answers
31 views
exists() condition performance issue
I'm confused...
I have simple SQL query (see below) that runs indefinitely long (I was not able to wait for its completion)
if exists(
select 1
from [files].[Contacts_Migration_Template] c ...
0
votes
5answers
35 views
Count the no of id if it is not present in another table based on condition using sql
I have a table which consists of RepId and its date.
Table: 1
RepID Date
108981 2013-04-09 00:00:00.000
108981 2013-04-09 00:00:00.000
108982 2013-04-10 00:00:00.000
108982 2013-04-11 ...
2
votes
5answers
13k views
Oracle sql return true if exists question
How do I check if a particular element exists in a table - how can I return true or false?
I have a table that has
user_id
user_password
user_secretQ
Verbally, I want to do this: If a ...
0
votes
2answers
35 views
perform true on joined tables
In PostgreSQL 8.4.13 I have two tables representing card games (each with 3 players) and the score results of those games. The players are identified by id column and the games by gid:
# \d ...
0
votes
2answers
39 views
php upload file on Edit form, prevent UPDATE if no file
I have a form to Edit existing values in a MySQL table.
One of the fields stores the filename of an image, (another stores the folder location of the image)
The file has an upload field to upload ...
2
votes
4answers
61 views
Checking if a file or directory exists in Java
From this java tutorial by oracle:
Note that !Files.exists(path) is not equivalent to
Files.notExists(path).
Why would they not be equivalent? it does not go any further in terms of ...
0
votes
5answers
49 views
Exists SQL Statement
I am trying to find all year and caseseqnumbers in a table where the type is not appellant Rep 1. The error is coming from the fact that a year and caseseqnumber can have many rows in the table. ...
0
votes
1answer
14 views
Check if div content already exists in another div?
I am creating a quiz in which I don't want the same question to pop up twice. If that happens, I want the page to update. So every time a question comes, the correct answer of the question will be put ...
0
votes
1answer
26 views
SQL 2008 Exists
I have 2 tables TimetableMaster and TimetableBreakup. In my stored procedure, i need an IF condition to check whether TimetableMaster.TimetableMasterID exists in the TimetableBreakup table(for which ...
1
vote
3answers
272 views
CASE statement inside EXISTS
I need to create a query which looks like this:
SELECT attr
FROM SomeTable B
WHERE EXISTS
(CASE WHEN B.some_attr = 0
...
0
votes
0answers
28 views
Java - from a class within a project, check if a file exists in a different project
I am within a project cd.ef.gh/country/terms/license/CreateLicense.java
From the class CreateLicense.java, I want to check if a file exists in a different project.
However the below code always ...
24
votes
5answers
28k views
JavaScript check if variable exists (is defined/initialized) - Which method is better?
Which method of checking if a variable has been initialized is better/correct?
(Assuming the variable could hold anything (string, int, object, function, etc.))
if (elem) {
or
if (typeof(elem) !== ...
0
votes
1answer
98 views
PHP - MySQL- Table doesn't exist
I have created a table using php. When i go to access that table, i get the error -table doesnt exist. I have given all permissions from to the user when creating table. table name is in small letters ...
0
votes
1answer
58 views
VBA excel for existence of image format of type jpg
Lets say that I have a spreadsheet in excel named test.xls and inside it a column named column1 with values image1, image2, etc. And I have a folder named images, contain images of type jpg, named ...
0
votes
3answers
79 views
delphi7, how to check picture of a Timage existence
The title is bad so i will explain:
Hi, i created 4 images, in which the character (game character, a car) looks at different directions, every time you press the arrow keys (up looks at up, down ...
0
votes
1answer
35 views
How can I download files, and process them only if some file does not exist?
_why is back, and of course leaving spooled messages on his webserver. I'd like to periodically poll his site, check for new spools, and if they don't exist already, convert them to PDF.
I have the ...
1
vote
1answer
166 views
Finding if a value already exists in the indexedDB
I am working in IndexedDB. I am able to create, populate and delete the values in my jquery mobile app.
Now when I come to a page for the first time I should check whether the value is available in ...
1
vote
3answers
63 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 ...
0
votes
2answers
41 views
SQL Query Help - LIKE Statement
SELECT Name
FROM Names n
WHERE EXISTS (SELECT NameIDs FROM NameList nl WHERE n.nameID LIKE '%'+nl.nameIDs);
I'm trying to query this table and it only seems to return the first values. Name ...
9
votes
6answers
4k views
JavaScript if var exists
I want my code so that if a specific var exists it will perform an action, else it will be ignored and move along. The problem with my code is, if the specific var does not exist it causes an error, ...
0
votes
0answers
31 views
magento api Requested order not exists
I have an observer for a magento store, that should fire on the event 'sales_order_place_after'. This observer gets the last order id like so:
$orders = ...
1
vote
3answers
211 views
DELETE records which do not have a match in another table
There are two tables linked by an id:
item_tbl (id)
link_tbl (item_id)
There are some records in item_tbl that don't have matching rows in link_tbl. A select which would count their amount would ...
13
votes
12answers
16k views
MySQL > Table doesn't exist. But it does (or it should)
I did change the datadir of a MySQL installation and following some steps it worked fine. Every base I had was moved correctly but one.
I can connect and USE the database, even SHOW TABLES returns me ...
0
votes
1answer
133 views
Oracle SQL Check Exists Constraint
I have two simple tables in Oracle SQL Developer (Train and Driver) each with a common attribute (driverid). Essentially what i want to do is to not allow any updates on a particular driver tuple in ...
12
votes
2answers
13k views
How to check if a file exists on a server using c# and the WebClient class
In my application I use the WebClient class to download files from a Webserver by simply calling the DownloadFile method. Now I need to check whether a certain file exists prior to downloading it (or ...
0
votes
2answers
34 views
sql: check if entry in table A exists in table B
I have a definition table that I know is not being maintained very well, lets call this table A. I have another table (call it table B) that is much smaller and ideally should be a subset of table A ...
0
votes
1answer
71 views
Check if Mobile (.m) website exists Query Issue
I'm having trouble checking if a url exists.
I use the below for most checks - its the best method I have found and saves on a full web request but it does;nt allow for checks on address such as:
...
0
votes
0answers
27 views
No results using with xmlnamespace exist
I am new to using WITH XMLNAMESPACES and am having some difficulty producing results using the exist() method. The xml column I am querying is as follows:
<Root>
...
0
votes
1answer
40 views
mySQL multiple Join with empty result line
I have two tables CLIENSTS and PRICES and I wanto to join them in order to calculate total prices amount per item type, every year.
My query has to sum every item's value, grouping them by type, and ...
-1
votes
4answers
177 views
IF EXISTS in WHERE clause
I ran into a problem this days. In my MS SQL Database I have a table of articles (details of them like insert date, insert user and other staffs) and one table with the body of articles in multiple ...
0
votes
1answer
63 views
check if entire list index exists
I have a .aspx program that has a list that can be edited and deleted from. I need to find a way to check if the list index exists so that I can populate my panels accordingly. I am NOT looking for ...
0
votes
3answers
1k views
how to check if a URL exists or not - error 404 ? (using php)
how to check if a URL exists or not - error 404 ? (using php)
<?php
$url = "http://www.faressoft.org/";
?>






