0
votes
3answers
64 views
Does the following query correct the problem?
hi
1) The following query obtains from each film category the cheapest
possible DVD with the highest rating:
SELECT FilmName, Rating, DVDPrice, Category
FROM Films AS FM1 INNE …
2
votes
1answer
22 views
SQL get IDs that are available in the given time interval for X consecutive days
In an SQL table I keep bookings for various resouces, with a StartDate/EndDate column:
ResourceID, StartDate, EndDate
-----------------------------------
1 2009-01-01 …
0
votes
8answers
108 views
Nervous Running Queries (SQL Server): What do you think about this?
I'm a frequent SQL Server Management Studio user. Sometimes I'm in situations where I have an update or delete query to run, but I'm afraid some typo or logic error on my part is …
1
vote
1answer
19 views
Hibernate HQL: how to use a complex left join fetch
Hi all,
I want to add a left join on TASK table when the following condition occurs:
LEFT JOIN FETCH
PROMPT p on (t.id = p.task.id and p.applicationName in ('XXX …
0
votes
1answer
19 views
cakephp save returns true but does not save
Hi,
CakePHP is driving me nuts!
Here is my code:
if($this->Page->save($datavalue))
{
$this->Session->setFlash('Page content updated successfully.');
}
else
{
$this-& …
0
votes
3answers
47 views
Creating reports in Access after the DB is completed
Hi,
I have a fully functional DB developed in Access. It was done using a very "interactive" developer-client increment-iterative process as no one really knows what the final DB …
2
votes
1answer
33 views
Advanced indexing involving OR-ed conditions (pgsql)
I'm starting to get a much better grasp on PostgreSQL indexing, but I've run into an issue with the OR conditional, where I don't know how to go about optimizing my indexes for a f …
0
votes
5answers
69 views
How to query from a stored procedure in SQL Server?
Let say I have a simple Stored Procedure:
ALTER PROCEDURE [dbo].[myProc]
AS
BEGIN
SELECT * FROM myTable
END
How can I do a WHERE statement in Microsoft SQL Server Management …
0
votes
1answer
65 views
linq aggregation
Say I have classes like:
public class ServiceCall
{
public int ServiceCallID {get; set;}
public DateTime ReportedTimestamp {get; set;}
public boo …
1
vote
2answers
32 views
how to structure an index for group by in Sql Server.
Hi,
The following simple query takes a very long time (several minutes) to execute.
I have an index: create index IX on [fctWMAUA] (SourceSystemKey, AsAtDateKey)
SELECT MAX([t0 …
0
votes
4answers
69 views
Do variables transfer over from one seperate script to another via PHP?
I have a script that has PHP on it, and a link that goes to a new script that alters that PHP. When writing the query and containing variables on the second script, do I need to us …
0
votes
0answers
20 views
How do you force linq to sql to use the correct data type for sql parameters?
I have a situation where a certain linq query that runs against a multi-million row table is taking far to long to run. I dissected the linq query output and found that it was crea …
0
votes
8answers
222 views
C# 30 Days From Todays Date (for the C# datetime gurus)
I need my application to expire 30 days from today, I will store the current date in the application config.How will I check if the application has expired ? I don't mind if the us …
0
votes
2answers
55 views
sql query - some kind of select distinct?
Suppose I have a log of Customers who come in on particular Days, like:
Cs day
-- ---
01 Tue
02 Tue
03 Wed
01 Wed
04 Thu
02 Thu
I need a query that returns only the #s o …
0
votes
2answers
44 views
On-demand eager loading
Hi guys,
I make a query:
String query = "SELECT DISTINCT a FROM A a FETCH ALL PROPERTIES " +
"JOIN a.Bs AS b " +
"JOIN b.Cs AS c WHERE c = :c";
Query q = DAO.getSession …
