1
vote
6answers
104 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].[AsAtDateKey]) AS …
2
votes
1answer
26 views
SQL Server 2005 T-SQL Problem: Need help in omitting records
Good day!
I need help in writing a query.. I have records in a table below.. The condition would be no records should be displayed if the succeeding records' new_state was repeated from the previous …
0
votes
1answer
12 views
querying multiple servers
Hi everyone
I am building a web service which needs to query 1 to n file servers, and receive multiple files as a result. Does anyone have a good idea on doing this? Would Threads do any good job?
…
0
votes
2answers
32 views
SQL Server: Kill Process using Stored Procedure
Hello all,
I want to modify the following as it doesn't seem to kill processes - I think its supposed to disconnect users (is this the same?). I want to be able to kill all process for a particular …
0
votes
1answer
9 views
maximum enum usage in schema
i need to populate a table column which takes one of 30 different string values. Is it advisable to use enum here for speed up processing . Can anyone suggest better solution which is reasonably …
1
vote
3answers
11 views
Cumulative average number of records created for specific day of week or date range…
Yeah, so I'm filling out a requirements document for a new client project and they're asking for growth trends and performance expectations calculated from existing data within our database.
The best …
3
votes
6answers
50 views
Can i force mysql to perform subquery first?
I have query like this:
SELECT `table_1`.* from `table_1`
INNER JOIN `table_2` [...]
INNER JOIN `table_3` [...]
WHERE `table_1`.`id` IN(
SELECT `id` FROM [...]
)
AND [more conditions]
When I …
0
votes
2answers
39 views
Help writing a complex join query
Hello All,
I am having a table orders
orders (
id int unsigned not null,
fcr_date TIMESTAMP,
completion_date TIMESTAMP,
factory_no varchar(255),
vendor_no varchar(255))
Please ignore the …
0
votes
1answer
60 views
Linq Query Expression reuse
Post Edited
Would this be possible ?
Have a query expression that is precompiled
i.e
private static Func<SmwrDataContext, int, IQueryable<Xyz>> _validXyzs =
…
0
votes
3answers
68 views
need an sql query
I currently have two tables:
1. car(plate_number, brand, cid)
2. borrow(StartDate, endDate, brand, id)
I want to write a query to get all available brand and count of available cars for each brand
1
vote
2answers
22 views
How does MySQL execute an aggregate query with a limit?
Does it group all possible results and then send back the results found within the given LIMIT?
0
votes
3answers
28 views
MySQL Beach Ball from NOT IN query
I have two queries that each return a list of node ids
SELECT node.nid
FROM dpf_node AS node
WHERE node.type = 'image' AND node.nid;
SELECT node.nid
FROM dpf_node AS node, …
0
votes
5answers
59 views
Performance tuning with SQL Server
Hi, I was trying to contact the author of a book I am reading on SQL Server query performance, but it seems the e-mail address provided in the book does not exis any more. So I decided to ask the …
0
votes
3answers
19 views
Trouble with Codeigniter Routes involving a query
Hey SO,
I'm having a little trouble with a CodeIgniter route when there is a query (stuff after the ?) in the URI. I know it is good practice to replace queries with routes in CI, but I'm importing …
0
votes
5answers
68 views
SQL query …multiple max value selection. Help needed
Business World 1256987 monthly 10 2009-10-28
Business World 1256987 monthly 10 2009-09-23
Business World 1256987 monthly 10 2009-08-18
Linux 4 U 456734 monthly 25 2009-12-24
Linux …
