473,394 Members | 1,865 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,394 software developers and data experts.

YYYYMM "between" selection on date column?

Hi there,

we're currently convert an old ISAM application to Java and DB2.

Among the load of problems we found the reports which have user
selections like "select all data between mm/yyyy and mm/yyyy".

Means: if the user enters "10/2004 - 10/2005" everything between
"2004-10-01" and "2004-10-31" is selected.

This isn't a real problem because I can expand the lower and upper
MMYYYY date selection to a DB2 date by calculating the first and last
day of a month and stuff it into the query parameters.

Or calculating the Julian date and substract 1 day from the upper
selection value and use this as parameter.

But I'm curious if this can be solved in a query without consuming too
much load on the database server.

A "select ... where order_date >= '2004-10' and order_date <='2005-10'
didn't work, >='2004-10-*' neither :-(

Bernd

--
"Ja, alles meine Herren" sprach Fürst Lichnowsky. "Ooch det roochen?"
"Ja, auch das Rauchen." "Ooch im Tiergarten?" "Ja, auch im Tiergarten
darf geraucht werden, meine Herren." Und so endeten die Barrikadenkämpfe
des 18. März in Berlin
Nov 12 '05 #1
16 9280
Bernd Hohmann wrote:
Hi there,

we're currently convert an old ISAM application to Java and DB2.

Among the load of problems we found the reports which have user
selections like "select all data between mm/yyyy and mm/yyyy".

Means: if the user enters "10/2004 - 10/2005" everything between
"2004-10-01" and "2004-10-31" is selected.

This isn't a real problem because I can expand the lower and upper
MMYYYY date selection to a DB2 date by calculating the first and last
day of a month and stuff it into the query parameters.

Or calculating the Julian date and substract 1 day from the upper
selection value and use this as parameter.

But I'm curious if this can be solved in a query without consuming too
much load on the database server.

A "select ... where order_date >= '2004-10' and order_date <='2005-10'
didn't work, >='2004-10-*' neither :-(

Bernd

Bernd, why do you believe there is load on the system? when doing the
math you propose. Depending on your fixpack you will either get the
constant expressions involved executed exactly once at runtime, or if
you pass true constants and are on a late fixpack DB2 may compute the
whole beast at compile-time (sonething we call "constant folding").

Cheers
Serge

PS: Welcome back from whichever stone you have been hiding under ;-)
--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #2
Serge Rielau wrote:
This isn't a real problem because I can expand the lower and upper
MMYYYY date selection to a DB2 date by calculating the first and last
day of a month and stuff it into the query parameters.

Or calculating the Julian date and substract 1 day from the upper
selection value and use this as parameter.
[...] Bernd, why do you believe there is load on the system? when doing the
math you propose. Depending on your fixpack you will either get the
constant expressions involved executed exactly once at runtime, or if
you pass true constants and are on a late fixpack DB2 may compute the
whole beast at compile-time (sonething we call "constant folding").
The problem isn't really the CPU load but the problem of additional
code. Additional code means problems in maintenance sooner or later.

So I have to decide betwen pest and cholera. The old ISAM was ok for
this task: "select ... where o_date between 200410 and 200510*".
PS: Welcome back from whichever stone you have been hiding under ;-)


Thanks a lot. I think I'll participate more in the next weeks to refresh
my knowledge.

Bernd

--
"Ja, alles meine Herren" sprach Fürst Lichnowsky. "Ooch det roochen?"
"Ja, auch das Rauchen." "Ooch im Tiergarten?" "Ja, auch im Tiergarten
darf geraucht werden, meine Herren." Und so endeten die Barrikadenkämpfe
des 18. März in Berlin
Nov 12 '05 #3
Bernd Hohmann wrote:
Hi there,

we're currently convert an old ISAM application to Java and DB2.

Among the load of problems we found the reports which have user
selections like "select all data between mm/yyyy and mm/yyyy".

Means: if the user enters "10/2004 - 10/2005" everything between
"2004-10-01" and "2004-10-31" is selected.

This isn't a real problem because I can expand the lower and upper
MMYYYY date selection to a DB2 date by calculating the first and last
day of a month and stuff it into the query parameters.

Or calculating the Julian date and substract 1 day from the upper
selection value and use this as parameter.

But I'm curious if this can be solved in a query without consuming too
much load on the database server.

A "select ... where order_date >= '2004-10' and order_date <='2005-10'
didn't work, >='2004-10-*' neither :-(

Bernd

It is ugly looking but
YEAR(date_col)||'/'||MONTH(date_col) BETWEEN 'yyyy/mm' AND 'yyyy/mm'
should work, with the proviso that if it is the only WHERE clause, a
sequential scan of your table may be necessitated
Nov 12 '05 #4
Bernd Hohmann wrote:
Serge Rielau wrote:
This isn't a real problem because I can expand the lower and upper
MMYYYY date selection to a DB2 date by calculating the first and last
day of a month and stuff it into the query parameters.

Or calculating the Julian date and substract 1 day from the upper
selection value and use this as parameter.


[...]
Bernd, why do you believe there is load on the system? when doing the
math you propose. Depending on your fixpack you will either get the
constant expressions involved executed exactly once at runtime, or if
you pass true constants and are on a late fixpack DB2 may compute the
whole beast at compile-time (sonething we call "constant folding").

The problem isn't really the CPU load but the problem of additional
code. Additional code means problems in maintenance sooner or later.

So I have to decide betwen pest and cholera. The old ISAM was ok for
this task: "select ... where o_date between 200410 and 200510*".

Well, you can alwasy use pandora's box:
CREATE FUNCTION my_date(arg INT)
RETURNS DATE DETERMINISTIC NO EXTERNAL ACTION CONTAINS SQL
RETURN <pestandcholera>

Would be fun to see the plan If all goes well: *poof* Out comes a constant.

Cheers
Serge

--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #5
Bob Stearns wrote:
It is ugly looking but
YEAR(date_col)||'/'||MONTH(date_col) BETWEEN 'yyyy/mm' AND 'yyyy/mm'
should work, with the proviso that if it is the only WHERE clause, a
sequential scan of your table may be necessitated


Well, if its doing the job I'll try it <g>

Bernd

--
"Ja, alles meine Herren" sprach Fürst Lichnowsky. "Ooch det roochen?"
"Ja, auch das Rauchen." "Ooch im Tiergarten?" "Ja, auch im Tiergarten
darf geraucht werden, meine Herren." Und so endeten die Barrikadenkämpfe
des 18. März in Berlin
Nov 12 '05 #6
Bernd Hohmann wrote:
Bob Stearns wrote:
It is ugly looking but
YEAR(date_col)||'/'||MONTH(date_col) BETWEEN 'yyyy/mm' AND 'yyyy/mm'
should work, with the proviso that if it is the only WHERE clause, a
sequential scan of your table may be necessitated

Well, if its doing the job I'll try it <g>

Bernd

*grmbl* Don't complain if it's slow....

DROP FUNCTION date_begin;
CREATE FUNCTION date_begin(arg VARCHAR(7))
DETERMINISTIC NO EXTERNAL ACTION CONTAINS SQL
RETURNS DATE
RETURN DATE(SUBSTR(arg, 1, 3) || '01/' || SUBSTR(arg, 4, 4));

DROP FUNCTION date_end;
CREATE FUNCTION date_end(arg VARCHAR(7))
DETERMINISTIC NO EXTERNAL ACTION CONTAINS SQL
RETURNS DATE
RETURN DATE(SUBSTR(arg, 1, 3) || '01/' || SUBSTR(arg, 4, 4)) + 1 MONTH
-1 DAY;

DROP TABLE T;
CREATE TABLE T (dt DATE);
INSERT INTO T VALUES
('10/01/2000'),
('09/30/2001'),
('08/15/2002'),
('07/12/2001');

SELECT * FROM T WHERE dt BETWEEN date_begin('09/2000') AND
date_end('08/2002');

Original Statement:
------------------
SELECT *
FROM T
WHERE dt BETWEEN date_begin('09/2000') AND date_end('08/2002')
Optimized Statement:
-------------------
SELECT Q1.DT AS "DT"
FROM SRIELAU.T AS Q1
WHERE (Q1.DT <= -(+(DATE(('08/' || '01/' || '2002')), 1, 2), 1, 3)) AND
(DATE(('09/' || '01/' || '2000')) <= Q1.DT)

Access Plan:
-----------
Total Cost: 12.875
Query Degree: 1

Rows
RETURN
( 1)
Cost
I/O
|
0.4
TBSCAN
( 2)
12.875
1
|
4
TABLE: SRIELAU
T
Give this puppy an index on DT and it will fly with a start-stop key

Cheers
Serge

--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #7
Serge Rielau wrote:
Give this puppy an index on DT and it will fly with a start-stop key


Works fine, but now the trouble with functions begin.

The user connected is "benutzer", the function is created with schema "cmm".

"...date_begin('09/2004')" doesn't work but
"...cmm.date_begin('09/2004')" does.

How can I add "cmm" permanent to the function path?

Bernd

--
"Ja, alles meine Herren" sprach Fürst Lichnowsky. "Ooch det roochen?"
"Ja, auch das Rauchen." "Ooch im Tiergarten?" "Ja, auch im Tiergarten
darf geraucht werden, meine Herren." Und so endeten die Barrikadenkämpfe
des 18. März in Berlin
Nov 12 '05 #8
Bernd Hohmann wrote:
Serge Rielau wrote:
Give this puppy an index on DT and it will fly with a start-stop key


Works fine, but now the trouble with functions begin.

The user connected is "benutzer", the function is created with schema
"cmm".

"...date_begin('09/2004')" doesn't work but
"...cmm.date_begin('09/2004')" does.

How can I add "cmm" permanent to the function path?


Modify the CURRENT FUNCTION PATH special register. I believe if your
application uses JDBC/CLI, then you can set the function path also in the
cli config.

--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Nov 12 '05 #9
Bernd Hohmann wrote:
Serge Rielau wrote:
Give this puppy an index on DT and it will fly with a start-stop key

Works fine, but now the trouble with functions begin.

The user connected is "benutzer", the function is created with schema
"cmm".

"...date_begin('09/2004')" doesn't work but
"...cmm.date_begin('09/2004')" does.

How can I add "cmm" permanent to the function path?

Bernd

SET PATH = CURRENT PATH, CMM
Permatent for the session. You can also add it to your client connectuon
properties, like the cli.ini file...

--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #10
Serge Rielau wrote:
SET PATH = CURRENT PATH, CMM
Permatent for the session. You can also add it to your client connectuon
properties, like the cli.ini file...


Ok, I set it at the beginning of the session.

Unfortunately I found again the reason why I refused to work with UDFs
in the past: problems with prepared statements. "some_udf(?)" has no
type during precompile so SQL0418N is thrown.

Gna... back to dynamic sql and howngrown query preprocessors too.

Bernd

--
"Ja, alles meine Herren" sprach Fürst Lichnowsky. "Ooch det roochen?"
"Ja, auch das Rauchen." "Ooch im Tiergarten?" "Ja, auch im Tiergarten
darf geraucht werden, meine Herren." Und so endeten die Barrikadenkämpfe
des 18. März in Berlin
Nov 12 '05 #11
Bernd Hohmann wrote:
Serge Rielau wrote:
SET PATH = CURRENT PATH, CMM
Permatent for the session. You can also add it to your client connectuon
properties, like the cli.ini file...
Ok, I set it at the beginning of the session.

Unfortunately I found again the reason why I refused to work with UDFs
in the past: problems with prepared statements. "some_udf(?)" has no
type during precompile so SQL0418N is thrown.


That's because DB2 doesn't know the type of '?'. Thus, it can't resolve the
(potentially overloaded) function. Use this instead:

some_udf(CAST(? AS <type>))

p.s: Personally, I prefer to always use explicitly the fully qualified name
(including schema name) for tables, views, functions and the like. It
simply avoids confusion and possibly problems down the road.


--
Knut Stolze
DB2 Information Integration Development
IBM Germany
Nov 12 '05 #12
Knut Stolze wrote:
Bernd Hohmann wrote:

Serge Rielau wrote:

SET PATH = CURRENT PATH, CMM
Permatent for the session. You can also add it to your client connectuon
properties, like the cli.ini file...


Ok, I set it at the beginning of the session.

Unfortunately I found again the reason why I refused to work with UDFs
in the past: problems with prepared statements. "some_udf(?)" has no
type during precompile so SQL0418N is thrown.

That's because DB2 doesn't know the type of '?'. Thus, it can't resolve the
(potentially overloaded) function. Use this instead:

some_udf(CAST(? AS <type>))

p.s: Personally, I prefer to always use explicitly the fully qualified name
(including schema name) for tables, views, functions and the like. It
simply avoids confusion and possibly problems down the road.

Until you try to move the schema around ;-)

--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #13
Serge Rielau wrote:
p.s: Personally, I prefer to always use explicitly the fully qualifiedname
(including schema name) for tables, views, functions and the like. It
simply avoids confusion and possibly problems down the road.


Until you try to move the schema around ;-)


So much I prefer the style of Knut I see the problems.

After working with other SQL databases the last years I found out that
DB2 is a wonderful but harsh mistress.

Bernd

--
"Ja, alles meine Herren" sprach Fürst Lichnowsky. "Ooch det roochen?"
"Ja, auch das Rauchen." "Ooch im Tiergarten?" "Ja, auch im Tiergarten
darf geraucht werden, meine Herren." Und so endeten die Barrikadenkämpfe
des 18. März in Berlin
Nov 12 '05 #14
Bernd Hohmann wrote:
Serge Rielau wrote:
p.s: Personally, I prefer to always use explicitly the fully
qualified name
(including schema name) for tables, views, functions and the like. It
simply avoids confusion and possibly problems down the road.

Until you try to move the schema around ;-)

So much I prefer the style of Knut I see the problems.

After working with other SQL databases the last years I found out that
DB2 is a wonderful but harsh mistress.

Bernd

Hehe, we Canadians live in an unforgiving environment, what do you
expect to come out of it? ;-)

--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #15
Serge Rielau wrote:
After working with other SQL databases the last years I found out that
DB2 is a wonderful but harsh mistress.

Hehe, we Canadians live in an unforgiving environment, what do you
expect to come out of it? ;-)


You're right. Tribes living in unforgiving environments are not very
known for inventing tools for a pleasant life.

The ancient romans for example invented the steam bath, central heating
and underfloor heating even though the're lived in a warm environment.

Contrariwise the Germans lived very unintimated and needed about 2000
years to regain the lost time.

Ok, I'll wait 2000 years for a "DB2 for the easygoing peoples" edition :-)

Bernd

--
"Ja, alles meine Herren" sprach Fürst Lichnowsky. "Ooch det roochen?"
"Ja, auch das Rauchen." "Ooch im Tiergarten?" "Ja, auch im Tiergarten
darf geraucht werden, meine Herren." Und so endeten die Barrikadenkämpfe
des 18. März in Berlin
Nov 12 '05 #16
Bernd Hohmann wrote:
Ok, I'll wait 2000 years for a "DB2 for the easygoing peoples" edition :-)

Watch out for DB2 code named "Malibu" from Jamaica Lab

Cheers
Serge

--
Serge Rielau
DB2 SQL Compiler Development
IBM Toronto Lab
Nov 12 '05 #17

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

2
by: Kevin | last post by:
When I run the query (please see below) between 08:30:00 and 17:29:59, I get the data from row 1; if I run the same query between 17:30:00 and 08:29:59, I get the "empty set." Can anyone explain...
4
by: Greg Iocco | last post by:
Simple problem, but I've checked the newsgroups and couldn't find an answer. On the main swithboard is a command button to open a report. The report I built is based off a query, and the query...
1
by: Jaycee66 | last post by:
Access 2000 "Between" query question: I am relatively new to MS Access and everytime I think I have a basic concept of the program it pokes me in the eye with something I think would be simple to...
4
by: meganrobertson22 | last post by:
Hi Everyone- I have a question about how to add and then use the "All" selection in a combo box. I am trying to figure out how to: (1) add "All" as a selection to a combo box and then (2)...
4
by: Chris | last post by:
Hello, I am attempting to build a MS SQL query that will return data from "today"; today being current day 8:00AM-10:00PM today. My goal is to return the data from a table that is written to...
19
by: MDC | last post by:
Why does this return true: IsDate("ISometimesHateProgrammingMarch2005") Is there another way to verify that this is not a date?? Thanks in advance! MDC
2
by: jerry.ranch | last post by:
I've been using row source with the QBE for my list and combo boxes..when would I use control source? jerry
0
by: lgalumbres | last post by:
Hello, I have a DataGridView control with a DataGridViewComboBoxColumn that allows users to choose selections from a list. The DataGridView is bound to a DataTable object and the...
2
brettl
by: brettl | last post by:
Hey all. I'm not sure if this question should be posted here or in the XML forums. Please forgive me if its in the wrong place or feel free to move it. Any who, I'm using a SOAP service to...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.