1
vote
1answer
11 views
Oracle JOIN USING + Subquery : ora-00904 string: invalid identifier
Hi,
i m having a little syntax problem in my query (simplified) :
select *
from table1 t1
inner join table2 t2 using (pk1)
inner join table3 t3 using (pk2)
where not exists (sele …
2
votes
5answers
123 views
Check if a database table exists using php/pdo
Hi,
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 ... MySQL, SQLite, ...
best …
2
votes
6answers
156 views
Is File.Exists an expensive operation?
Re: http://msdn.microsoft.com/en-us/library/system.io.file.exists.aspx
Does anyone know if this is a particularly slow or locking operation which could impact server performance i …
0
votes
2answers
21 views
NHibernate: CreateCriteria and Exists clause
How can I write the following SQL using CreateCriteria:
SELECT * FROM FooBar fb
WHERE EXISTS (SELECT FooBarId FROM Baz b WHERE b.FooBarId = fb.Id)
0
votes
8answers
192 views
Best way to test if a row exists in a MySQL table
I'm trying to find out if a row exists in a table. Using MySQL, is it better to do a query like this:
SELECT COUNT(*) AS total FROM table1 WHERE ...
and check to see if the tota …
0
votes
1answer
12 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, …
0
votes
2answers
41 views
Optimize mysql query
Hi All,
I want to optimize this query as it is taking long to execute almost a second
Here's the query:
IF Exists(
Select CustFirstName From Customers
Where (CustFirstName = …
1
vote
4answers
83 views
How can you check to see if a file exists (on the remote server) in Capistrano?
Like many others I've seen in the Googleverse, I fell victim to the File.exists? trap, which of course checks your local file system, not the server you are deploying to.
I found …
1
vote
4answers
317 views
C# - Delete files from directory if filename contains a certain word
I need to check a directory to see if there are any files whos file name contains a specific keyword and if there are, to delete them. Is this possible?
Example:
If there are an …
0
votes
2answers
91 views
which sqlite statement can produce a result to indicate duplicate entries? Android
For my application, I am trying to add entries without having a duplicate entry, and if there are a duplicate notify the user and have him try again. Using SQLite, which I know ver …
0
votes
2answers
83 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 co …
5
votes
4answers
194 views
Actionscript3: Does variable exist?
I'm a little bit new to Actionscript, but I can't figure this one out. I've done a lot of searching on this topic and haven't found a clear answer. I've tried the following solutio …
1
vote
3answers
71 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
…
0
votes
1answer
50 views
check xml for node that doesn’t exist with jQuery?
I've got an xml doc that looks similiar to:
<schedule techs="52" date="2009-10-06">
<tech name="Ryan (RI, MA, CT, NH)" value="1">
<time value="4">
<HONAME v …
3
votes
4answers
681 views
How to check if a file exists and is readable in C++?
I've got a fstream my_file("test.txt"), but I don't know if test.txt exists. In case it exists, I would like to know if I can read it, too. How to do that?
I use Linux.
