473,385 Members | 1,863 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,385 software developers and data experts.

decimal to date

I've probably asked this before, but I can't remember the answer!

One can use the DECIMAL function to convert a date to a decimal.
For instance
values decimal(current_date)
returns 20080528.

Is there an easy way to convert the decimal value back to a date?
I can't use DATE(<decimal-value>) because it expects the decimal value to be
the number of days since Jan 1, 0001.

I'm sure I could write a function to do what I need, but I don't want to
waste my time if it already exists.

DB2/LUW 9.5.

Thanks,
Frank
Jun 27 '08 #1
9 4661
Frank Swarbrick wrote:
I've probably asked this before, but I can't remember the answer!

One can use the DECIMAL function to convert a date to a decimal.
For instance
values decimal(current_date)
returns 20080528.

Is there an easy way to convert the decimal value back to a date?
I can't use DATE(<decimal-value>) because it expects the decimal
value to be the number of days since Jan 1, 0001.

I'm sure I could write a function to do what I need, but I don't want
to waste my time if it already exists.

DB2/LUW 9.5.

Thanks,
Frank
This groups archive (in Google) shows a nice solution (amongst others) by
Tonkuma:

DATE(TRANSLATE('ABCD-EF-GH',DIGITS(MYDATE),'ABCDEFGH'))

[where MYDATE is your decimal-date-field].

The thread was called "Convert DECIMAL to DATE" and was started on 20060308
;o)

Cheers!

--
Jeroen
Jun 27 '08 #2
The Boss wrote:
Frank Swarbrick wrote:
>I've probably asked this before, but I can't remember the answer!

One can use the DECIMAL function to convert a date to a decimal.
For instance
values decimal(current_date)
returns 20080528.

Is there an easy way to convert the decimal value back to a date?
I can't use DATE(<decimal-value>) because it expects the decimal
value to be the number of days since Jan 1, 0001.

I'm sure I could write a function to do what I need, but I don't want
to waste my time if it already exists.

DB2/LUW 9.5.

Thanks,
Frank

This groups archive (in Google) shows a nice solution (amongst others) by
Tonkuma:

DATE(TRANSLATE('ABCD-EF-GH',DIGITS(MYDATE),'ABCDEFGH'))
In DB2 9.5 you can also use TIMESTAMP_FORMAT() (aka TO_DATE) after
converting the beast to a string.

Cheers
Serge
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Jun 27 '08 #3
>>On 5/28/2008 at 7:35 PM, in message
<6a*************@mid.individual.net>,
Serge Rielau<sr*****@ca.ibm.comwrote:
The Boss wrote:
>Frank Swarbrick wrote:
>>I've probably asked this before, but I can't remember the answer!

One can use the DECIMAL function to convert a date to a decimal.
For instance
values decimal(current_date)
returns 20080528.

Is there an easy way to convert the decimal value back to a date?
I can't use DATE(<decimal-value>) because it expects the decimal
value to be the number of days since Jan 1, 0001.

I'm sure I could write a function to do what I need, but I don't want
to waste my time if it already exists.

DB2/LUW 9.5.

Thanks,
Frank

This groups archive (in Google) shows a nice solution (amongst others)
by
>Tonkuma:

DATE(TRANSLATE('ABCD-EF-GH',DIGITS(MYDATE),'ABCDEFGH'))
In DB2 9.5 you can also use TIMESTAMP_FORMAT() (aka TO_DATE) after
converting the beast to a string.
Thanks Serge and 'Boss'.
This is what I came up with:

CREATE FUNCTION date_from_decimal (dec_date DECIMAL(8))
RETURNS DATE
SPECIFIC date_from_decimal8
LANGUAGE SQL
CONTAINS SQL
NO EXTERNAL ACTION
DETERMINISTIC
RETURN DATE(TIMESTAMP_FORMAT(DIGITS(dec_date),'YYYYMMDD') );

Works like a charm.
Still think that something like it should be built in to DB2, but perhaps
it's not that common...

Frank

Jun 27 '08 #4
>>On 5/29/2008 at 9:46 AM, in message
<48******************@efirstbank.com>,
Frank Swarbrick<Fr*************@efirstbank.comwrote:
>>>On 5/28/2008 at 7:35 PM, in message
<6a*************@mid.individual.net>,
Serge Rielau<sr*****@ca.ibm.comwrote:
>The Boss wrote:
>>Frank Swarbrick wrote:
I've probably asked this before, but I can't remember the answer!

One can use the DECIMAL function to convert a date to a decimal.
For instance
values decimal(current_date)
returns 20080528.

Is there an easy way to convert the decimal value back to a date?
I can't use DATE(<decimal-value>) because it expects the decimal
value to be the number of days since Jan 1, 0001.

I'm sure I could write a function to do what I need, but I don't want
to waste my time if it already exists.

DB2/LUW 9.5.

Thanks,
Frank

This groups archive (in Google) shows a nice solution (amongst others)
by
>>Tonkuma:

DATE(TRANSLATE('ABCD-EF-GH',DIGITS(MYDATE),'ABCDEFGH'))
In DB2 9.5 you can also use TIMESTAMP_FORMAT() (aka TO_DATE) after
converting the beast to a string.

Thanks Serge and 'Boss'.
This is what I came up with:

CREATE FUNCTION date_from_decimal (dec_date DECIMAL(8))
RETURNS DATE
SPECIFIC date_from_decimal8
LANGUAGE SQL
CONTAINS SQL
NO EXTERNAL ACTION
DETERMINISTIC
RETURN DATE(TIMESTAMP_FORMAT(DIGITS(dec_date),'YYYYMMDD') );

Works like a charm.
Still think that something like it should be built in to DB2, but
perhaps
it's not that common...
I do have another sort of related question...

Is there a way to automatically issue a SET PATH statement whenever a user
connects?

I want to place the date_from_decimal function in a particular schema that
is not named after any particular user (CREATE FUNCTION
fb_func.date_from_decimal), but I also want to allow any user to invoke it
without needing to use the schema qualifier. I know that I can have each
application issue a SET PATH statement prior to invoking the function (SET
PATH = fb_func, CURRENT PATH), but it would be nice to have DB2 do this
automatically.

Thanks,
Frank

Jun 27 '08 #5
On May 29, 9:14 am, "Frank Swarbrick" <Frank.Swarbr...@efirstbank.com>
wrote:
>On 5/29/2008 at 9:46 AM, in message

<483E7B60.6F0F.008...@efirstbank.com>,

Frank Swarbrick<Frank.Swarbr...@efirstbank.comwrote:
>>On 5/28/2008 at 7:35 PM, in message
<6a6fipF34p4j...@mid.individual.net>,
Serge Rielau<srie...@ca.ibm.comwrote:
The Boss wrote:
Frank Swarbrick wrote:
I've probably asked this before, but I can't remember the answer!
>>One can use the DECIMAL function to convert a date to a decimal.
For instance
values decimal(current_date)
returns 20080528.
>>Is there an easy way to convert the decimal value back to a date?
I can't use DATE(<decimal-value>) because it expects the decimal
value to be the number of days since Jan 1, 0001.
>>I'm sure I could write a function to do what I need, but I don't want
to waste my time if it already exists.
>>DB2/LUW 9.5.
>>Thanks,
Frank
>This groups archive (in Google) shows a nice solution (amongst others)
by
Tonkuma:
>DATE(TRANSLATE('ABCD-EF-GH',DIGITS(MYDATE),'ABCDEFGH'))
In DB2 9.5 you can also use TIMESTAMP_FORMAT() (aka TO_DATE) after
converting the beast to a string.
Thanks Serge and 'Boss'.
This is what I came up with:
CREATE FUNCTION date_from_decimal (dec_date DECIMAL(8))
RETURNS DATE
SPECIFIC date_from_decimal8
LANGUAGE SQL
CONTAINS SQL
NO EXTERNAL ACTION
DETERMINISTIC
RETURN DATE(TIMESTAMP_FORMAT(DIGITS(dec_date),'YYYYMMDD') );
Works like a charm.
Still think that something like it should be built in to DB2, but
perhaps
it's not that common...

I do have another sort of related question...

Is there a way to automatically issue a SET PATH statement whenever a user
connects?

I want to place the date_from_decimal function in a particular schema that
is not named after any particular user (CREATE FUNCTION
fb_func.date_from_decimal), but I also want to allow any user to invoke it
without needing to use the schema qualifier. I know that I can have each
application issue a SET PATH statement prior to invoking the function (SET
PATH = fb_func, CURRENT PATH), but it would be nice to have DB2 do this
automatically.

Thanks,
Frank
If the users are connecting via CLP, I don't know of another way other
than setting it each time. If they're connecting via other means, you
could try setting the current (function) path via the cli.ini. Also--
again depending on how users are connecting--the application server/
ORM layer/JDBC layer may have its own ini file that you could put the
entry (or its equivalent) in.

--Jeff
Jun 27 '08 #6
jefftyzzer wrote:
>I want to place the date_from_decimal function in a particular schema that
is not named after any particular user (CREATE FUNCTION
fb_func.date_from_decimal), but I also want to allow any user to invoke it
without needing to use the schema qualifier. I know that I can have each
application issue a SET PATH statement prior to invoking the function (SET
PATH = fb_func, CURRENT PATH), but it would be nice to have DB2 do this
automatically.
You want a .login. Yeah it's on my wish list, too.
Keeps popping up, but never (so far) made the cut.

Cheers
Serge
--
Serge Rielau
DB2 Solutions Development
IBM Toronto Lab
Jun 27 '08 #7
>>On 5/29/2008 at 11:15 AM, in message
<41**********************************@i18g2000prn. googlegroups.com>,
jefftyzzer<je********@sbcglobal.netwrote:
On May 29, 9:14 am, "Frank Swarbrick" <Frank.Swarbr...@efirstbank.com>
wrote:
>>
Is there a way to automatically issue a SET PATH statement whenever a
user
>connects?

I want to place the date_from_decimal function in a particular schema
that
>is not named after any particular user (CREATE FUNCTION
fb_func.date_from_decimal), but I also want to allow any user to invoke
it
>without needing to use the schema qualifier. I know that I can have
each
>application issue a SET PATH statement prior to invoking the function
(SET
>PATH = fb_func, CURRENT PATH), but it would be nice to have DB2 do this
automatically.

If the users are connecting via CLP, I don't know of another way other
than setting it each time. If they're connecting via other means, you
could try setting the current (function) path via the cli.ini. Also--
again depending on how users are connecting--the application server/
ORM layer/JDBC layer may have its own ini file that you could put the
entry (or its equivalent) in.
We'll be connecting either from JDBC (via Websphere) and from host DRDA
client applications.

Thanks for the ideas.

Frank

Jun 27 '08 #8
On May 29, 4:07 pm, "Frank Swarbrick" <Frank.Swarbr...@efirstbank.com>
wrote:
>On 5/29/2008 at 11:15 AM, in message

<4154d8a4-908d-49b7-90f4-ae3d1e500...@i18g2000prn.googlegroups.com>,

jefftyzzer<jefftyz...@sbcglobal.netwrote:
On May 29, 9:14 am, "Frank Swarbrick" <Frank.Swarbr...@efirstbank.com>
wrote:
Is there a way to automatically issue a SET PATH statement whenever a
user
connects?
I want to place the date_from_decimal function in a particular schema
that
is not named after any particular user (CREATE FUNCTION
fb_func.date_from_decimal), but I also want to allow any user to invoke
it
without needing to use the schema qualifier. I know that I can have
each
application issue a SET PATH statement prior to invoking the function
(SET
PATH = fb_func, CURRENT PATH), but it would be nice to have DB2 do this
automatically.
If the users are connecting via CLP, I don't know of another way other
than setting it each time. If they're connecting via other means, you
could try setting the current (function) path via the cli.ini. Also--
again depending on how users are connecting--the application server/
ORM layer/JDBC layer may have its own ini file that you could put the
entry (or its equivalent) in.

We'll be connecting either from JDBC (via Websphere) and from host DRDA
client applications.

Thanks for the ideas.

Frank
Frank,

In re: WebSphere, I just spoke to one of our administrators, who gave
me some information that might be helpful to you: You'll want to set
the currentFunctionPath Custom Property within your Data Source, which
is itself within the JDBC Providers link in the Resources area of the
WS Admin Console.

HTH,

--Jeff
Jun 27 '08 #9
>>On 5/30/2008 at 12:57 PM, in message
<09**********************************@a32g2000prf. googlegroups.com>,
jefftyzzer<je********@sbcglobal.netwrote:
In re: WebSphere, I just spoke to one of our administrators, who gave
me some information that might be helpful to you: You'll want to set
the currentFunctionPath Custom Property within your Data Source, which
is itself within the JDBC Providers link in the Resources area of the
WS Admin Console.
Thanks.
Frank

Jun 27 '08 #10

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

Similar topics

21
by: Batista, Facundo | last post by:
Here I send it. Suggestions and all kinds of recomendations are more than welcomed. If it all goes ok, it'll be a PEP when I finish writing/modifying the code. Thank you. .. Facundo
6
by: Chris Kennedy | last post by:
I am pulling a decimal value from SQL server and trying to use the format currency and format number function. I am using these values in a large string of HTML to be used in a CDONTS Email. If I...
4
by: spebola | last post by:
I am using vb.net 2003 professional and I get the following results when using the round method: dim Amount as decimal = 180.255 Amount = Amount.Round(Amount, 2) Amount now contains 180.25. ...
5
by: Ray | last post by:
I have a table with some audit date and time columns. Problem is the developer who stored the data left them as DECIMAL type instead of DATE and TIME. Is there a way I can convert the DECIMAL type...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
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: aa123db | last post by:
Variable and constants Use var or let for variables and const fror constants. Var foo ='bar'; Let foo ='bar';const baz ='bar'; Functions function $name$ ($parameters$) { } ...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
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...
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
1
by: Sonnysonu | last post by:
This is the data of csv file 1 2 3 1 2 3 1 2 3 1 2 3 2 3 2 3 3 the lengths should be different i have to store the data by column-wise with in the specific length. suppose the i have to...
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
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,...

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.