Tagged Questions
The queries tag has no wiki summary.
12
votes
8answers
607 views
Your Favorite LINQ-to-Objects Queries
With LINQ, a lot of programming problems can be solved more easily - and in fewer lines of code.
What are some the best real-world LINQ-to-Objects queries that you've written?
(Best = simplicity ...
11
votes
2answers
2k views
MySQL: How many queries per page is too many?
I'm new to MySQL and something that's quickly becoming obvious to me is that it feels considerably easier to create several database queries per page as opposed to a few of them.... but I don't really ...
8
votes
3answers
94 views
How to get all executed SQL queries in ORACLE?
Is possible to find out all SQL queries and their return code, which was executed in Oracle database? Specially I want to get all sql queries which has negative sql code (error).
Thank you for ...
6
votes
6answers
864 views
SQL WHERE ID IN (id1, id2, …, idn)
I need to write a query to retrieve a big list of ids.
We do support many backends (MySql, Firebird, SQLServer, Oracle, Postgress ...) so I need to write a standard SQL.
The size of the id set could ...
6
votes
2answers
152 views
C# LINQ optimization
What would be the proper way of optimizing the following kind of statements:
IEnumerable<T> sequence = BuildSequence();
// 'BuildSequence' makes some tough actions and uses 'yield return'
// to ...
6
votes
6answers
753 views
Most useful SQL meta-queries
I have a passion for meta-queries, by which I mean queries that answer questions about data rather than answering with data.
Before I get a lot of justified criticism, I do realize that the approach ...
5
votes
2answers
440 views
MongoDB queries
For example, I have collection with documents, where documents can have field "url" (but most of them doesn't).
How can I find all documents, which have field "url" (regardless of value of this ...
5
votes
2answers
449 views
How to get over limitations of the Hibernate Criteria and Example APIs?
I'm in a position where our company has a database search service that is highly configurable, for which it's very useful to configure queries in a programmatic fashion. The Criteria API is powerful ...
5
votes
3answers
3k views
LINQ-to-SQL CompiledQuery.Compile() with Update, Delete, Insert?
All,
So I've got all my select queries in LINQ-to-SQL converted to using CompiledQueries to speed things up. Works great so far for select statements, but I haven't been able to figure out how to ...
4
votes
2answers
148 views
What's the difference between HAVING and WHERE in MySQL Query?
I have a view (viewX) based on joins of some tables:
When I use WHERE, the query is delayed, processor usage goes to 50% and finally I need to close mysqld.exe service and restart to try to solve the ...
4
votes
3answers
236 views
how do i build dynamic linq queries at runtime using strings?
This article talks about building dynamic queries using strings is it possible?
i tried
var ase = a.Select("NEW(activity_date as date)");
and it doesn't work
The type arguments for method
...
4
votes
4answers
157 views
Count million users from DB realtime?
What's an efficient way to select count(*) from DB in order to count registered users and create a counter realtime (or almost realtime)? I dont want to run that query every second (on mln users)..was ...
4
votes
2answers
369 views
Decreasing queries in MySQL with many one-to-many relationships (ORM)
I'm currently designing an application using PHP and MySQL, built on the Kohana framework. I'm making use of the built in ORM and it has proved to be extremely useful. Everything works fine, but I'm ...
4
votes
5answers
3k views
How do I print all the queries in Magento?
is it possible to display all the query strings in Magento? I really like to see what queries are executed.
Thanks
4
votes
2answers
716 views
Workaround for LINQ to SQL Entity Identity Caching and Compiled Query Bug?
I've come across what appears to be a bug in linq to sql where identity caching does not work when performing primary key queries inside of a compiled query.
I wrote the following sample to ...
3
votes
1answer
68 views
Learning PHP PDO.. would like to know the correct way to use it when many queries are involved
In the past I would just create a class to connect to a database, and then run a bunch of methods to run queries.. like so:
class connectDB
{
public $db_host = "asdf.db.asdf.hostedresource.com";
...
3
votes
2answers
135 views
How to escape special SQL characters in regular expression in Mysql
I have a text field to accept regular expressions from the UI. For these regular expressions, I have a search capability and want to do a search. I am using prepared statements and the DB is mysql. ...
3
votes
6answers
92 views
Are secret query strings a reasonable way to limit access and hide content to a non-secure site?
So I'll say right up front, obviously I know this is not actually secure, don't beat me up over that. I'm just interested in the question from a lazyness standpoint.
I have a website that has some ...
3
votes
2answers
193 views
CakePHP find call result in many “SET CHARACTER SET utf8” queries. Why?
What is the reason for CakePHP to do the query "SET CHARACTER SET utf8" 38 times in a row for a simple find("all") (recursive property default at 0) ?
I use MySQL as database and let's say I create a ...
3
votes
4answers
110 views
Challenging MySQL query
I'm working on a blogging app that requires a unique query.
Problem: I need to display one parent post, all it's children posts (up to a certain number before requiring pagination), and up to 5 ...
3
votes
3answers
237 views
Storing dates in mysql: Performance comparison between various methods for Date
Now there are three options that I have in my mind.
1st -> four columns(date, month, year, day) => 28, 03, 2011, 1
I can easily search and modify these columns without additional learning of mysql ...
3
votes
5answers
127 views
sql not exist problem
Having a bit of trouble dealing with not exist clause in a querie.
I have three tables:
Meal
no_meal integer
type_meal varchar(255)
Consumed
no_meal integer
designation varchar(255)
quantity ...
3
votes
4answers
246 views
How much calculation should be done by MySQL?
I am writing an application and using MySQL to return the difference between 2 dates in MySQL should MySQL do this or should I actually let PHP handle it?
I also just need the sum of all the results ...
3
votes
3answers
709 views
Hibernate Performance Tweaks
In your experience what are some good Hibernate performance tweaks? I mean this in terms of Inserts/Updates and Querying.
3
votes
5answers
14k views
How to create a dataview In Sharepoint with data from a join query?
I have 3 Lists in Sharepoint.
I want to create a dataview that is a join of 3 tables.
Table1 is joined with Table2 on FieldA
Table 2 is joined to Table3 on FieldB
Table1 has duplicate values in ...
3
votes
5answers
5k views
Is it possible to automate MS SQL Server (2005) queries via SQL Server Management Studio?
I have two queries saved on my SQL Server 2005 and I would like to have them running at certain intervals, e.g. every 24 hours. Is there a way to automate these queries and schedule them via SQL ...
2
votes
1answer
40 views
DateTime differences between rows in a database
I have been trying to write a query that returns the average time difference between different rows in a database. Basically, this has to do with a table that stores records based on a figure. The ...
2
votes
5answers
88 views
PHP Script takes almost 15 seconds to load
I've written a PHP script that iterates through a given folder, extracts all the images from there and displays them on an HTML page (as tags). The size of the page is about 14 KB, but it takes the ...
2
votes
5answers
69 views
Is it possible to do this in one MySQL query?
I have two tables:
conversation_participants
id | conversation_id | user_id
int(11) | int(11) | int(11)
users
id | username | ....
int(11) | varchar(20)| ....
I am trying ...
2
votes
4answers
69 views
Make column unique in two tables in our database
I have come into a bump at my current company where they have an account and a member. For some reason or another both are stored in separate tables.
Right now a member and an account can be ...
2
votes
2answers
43 views
Getting the newest record from a database Multiple queries
I have a mysql database with vehicles records. I need a fast query that will return the newest records of those records that were updated within the last 4 minutes. For example vehicle "A" may be ...
2
votes
1answer
55 views
How to find broken queries in Access?
How do I find broken queries in access.
i.e. Queries that might have broken because the underlying table was deleted or the name of the column in the table changed?
Is there an easy way -- rather ...
2
votes
1answer
36 views
MYSQL QUERY for Products and Variants
I was hoping I could get some help with a Query I am trying to figure out. Our online store needs to know when all variants of a product are at quantity zero so we can disable the product from ...
2
votes
3answers
74 views
Mysql relationships and getting linked data
I have been doing this for a while now, via some php, first lets say we have two tables:
Users
user_id name email
Images
image_id user_id url
user_id and user_id from images table would be linked ...
2
votes
3answers
56 views
Is there an existing piece of software that allows you to (easily) build queries throught a webpage?
I would like to build arbitrary queries to a database, by allowing the user to build queries "on the fly". For every object/table, being able to select its attributes, and then "building" the query ...
2
votes
2answers
327 views
PostgreSQL - query against GIN index of HSTORE value
I have the following constructor (as a test):
CREATE TABLE product (id BIGSERIAL PRIMARY KEY, ext hstore);
CREATE INDEX ix_product_ext ON product USING GIN(ext);
INSERT
INTO product (id, ext)
...
2
votes
4answers
98 views
Are there any better or alternative ways of writing my SQL queries? [closed]
SQL is my "weak" part, however I can handle it. I was wondering if there are better ways of writing my queries below. Any alternative like small tweaks or editing is welcome, it's a way for me to ...
2
votes
3answers
241 views
php mysql merge multiple same queries into one
So i have some range from 1 to 40,
which i have to use in order execute different queries from the same table and column but from a different range like:
mysql_query("SELECT * FROM table WHERE ...
2
votes
1answer
34 views
Compare 1 parameter to multiple fields in mysql
I want to do something like this in my query:
$query = $mysqldb->make_query("SELECT * FROM dvd WHERE
NAME LIKE '%{$str_param}%' OR
CATEGORY={$str_param} OR
TYPE={$str_param} OR ...
2
votes
1answer
295 views
Suitability of MongoDB for hierarchial type queries
I have a particular data manipulation requirement that I have worked out how to do in SQL Server and PostgreSQL. However, I'm not too happy with the speed, so I am investigating MongoDB.
The best way ...
2
votes
2answers
245 views
Translating data mining sql-queries into Grails equivalents?
I would like to build a web interface to present logdata. This should be a nice opportunity to try to build a little web app using Grails, which I have been wanting to try out for quite a while, but I ...
2
votes
1answer
360 views
On GoogleEngine (Java), in JDO, how do I query a list of child objects based on the id of the parent?
I have two value objects, Calendar and Event, that are persistent. Calendar has a property that consists in a list of events, with a one to many relationship. Calendar is a parent of Events as shown ...
2
votes
2answers
80 views
How can I merge these two queries into one?
$a = mysql_query("SELECT COUNT(*) as `count_1` FROM `table_1` WHERE `this_1` = '1'");
$b = mysql_fetch_assoc($a);
$c = mysql_query("SELECT COUNT(*) as `count_2` FROM `table_1` WHERE `this_2` = '1'");
...
2
votes
3answers
160 views
How should I join these 3 SQL queries in Oracle?
I have these 3 queries:
SELECT
title, year, MovieGenres(m.mid) genres,
MovieDirectors(m.mid) directors, MovieWriters(m.mid) writers,
synopsis, poster_url
FROM movies m
WHERE m.mid = 1;
SELECT ...
2
votes
2answers
430 views
Monitoring queries of a MySQL user
is there any way to monitor/log a MySQL user and the queries he/she has ran? I had to turn off the general log using the query:
SET GLOBAL general_log = 'OFF';
because otherwise the log file ...
2
votes
2answers
401 views
Filter SELECT and INSERT/UPDATE/DELETE queries in Zend Framework
I am using multidb pattern in Zend Framework.
Typically I will be using master/slave architecture of MysqlDB.
So my question is what should I do to execute SELECT queries from slave database and ...
2
votes
3answers
92 views
is it okay if i put all my db queries in one file?
i have function file called models.php, which stores all my database functions, for example
// get the updates for the $user_id profile
function getProfileUpdates($user_id) {
$query="SELECT m . ...
2
votes
4answers
157 views
One to many too much data returned - MySQL
I have 2 related MySQL tables in a one to many relationship.
Customers: cust_id, cust_name, cust_notes
Orders: order_id, cust_id, order_comments
So, if I do a standard join to get all customers ...
2
votes
3answers
850 views
Mixing JPA annotations and XML configuration
I have a fairly large (new) project in which we have annotated many domain classes with JPA mappings. Now it is time to implement many named queries -- some entities may have as many as 15-20 named ...
2
votes
4answers
1k views
Are Hibernate named HQL queries (in annotations) optimised?
A new colleague has just suggested using named HQL queries in Hibernate with annotations (i.e. @NamedQuery) instead of embedding HQL in our XxxxRepository classes.
What I'd like to know is whether ...