niXforums Forum Index
 FAQFAQ   SearchSearch   MemberlistMemberlist   UsergroupsUsergroups   RegisterRegister 
 ProfileProfile   PreferencesPreferences   Log in to check your private messagesLog in to check your private messages   Log inLog in 
·  nixdoc.net ·  man pages ·  Linux HOWTOs ·  FreeBSD Tips ·  Forums
navigation Forum index » Databases » PostgreSQL
to_char bug?
Post new topic   Reply to topic Page 69 of 71 [1061 Posts] View previous topic :: View next topic
Goto page:  Previous  1, 2, 3, ..., 67, 68, 69, 70, 71 Next
Author Message
Martijn van Oosterhout
*nix forums Guru


Joined: 02 Mar 2005
Posts: 674

PostPosted: Wed Jun 14, 2006 9:38 am    Post subject: Re: Me And My Database Reply with quote

On Wed, Jun 14, 2006 at 11:35:12AM +0200, Leif B. Kristensen wrote:
Quote:
On Wednesday 14. June 2006 11:09, Martijn van Oosterhout wrote:
IIRC, if you just declare src as type "record" you can select any
fields you like. AIUI, declaring a row to be of a specific type is
only really important if you plan to return it or pass it to another
function.

I tried:

CREATE OR REPLACE FUNCTION get_source_text(integer) RETURNS TEXT AS $$
DECLARE
src RECORD;
mystring TEXT;
BEGIN
SELECT (source_id, parent_id, large_text)
FROM sources INTO src WHERE source_id = $1;

Why did you put parenthesis there? It looks like you're making a record
within a record. You wouldn't have parenthesis there for a normal
select statement, would you?

Have a nice day,
--
Martijn van Oosterhout <kleptog@svana.org> http://svana.org/kleptog/
> From each according to his ability. To each according to his ability to litigate.
Back to top
Leif B. Kristensen
*nix forums beginner


Joined: 12 Mar 2005
Posts: 44

PostPosted: Wed Jun 14, 2006 9:45 am    Post subject: Re: Me And My Database Reply with quote

On Wednesday 14. June 2006 11:38, Martijn van Oosterhout wrote:
Quote:
Why did you put parenthesis there? It looks like you're making a
record within a record. You wouldn't have parenthesis there for a
normal select statement, would you?

s**t. When I remove the parentheses, it runs fine.

This is a little contrary to common programmer philosophy, where putting
in extra parentheses for clarity is considered Good Practice[TM].
--
Leif Biberg Kristensen | Registered Linux User #338009
http://solumslekt.org/ | Cruising with Gentoo/KDE

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match
Back to top
Leif B. Kristensen
*nix forums beginner


Joined: 12 Mar 2005
Posts: 44

PostPosted: Wed Jun 14, 2006 10:34 am    Post subject: Re: Me And My Database Reply with quote

On Wednesday 14. June 2006 11:38, Martijn van Oosterhout wrote:
Quote:
Have a nice day,

I forgot to say thank you. And a nice day to you too.
--
Leif Biberg Kristensen | Registered Linux User #338009
http://solumslekt.org/ | Cruising with Gentoo/KDE

---------------------------(end of broadcast)---------------------------
TIP 4: Have you searched our list archives?

http://archives.postgresql.org
Back to top
Martijn van Oosterhout
*nix forums Guru


Joined: 02 Mar 2005
Posts: 674

PostPosted: Wed Jun 14, 2006 10:39 am    Post subject: Re: Me And My Database Reply with quote

On Wed, Jun 14, 2006 at 11:45:03AM +0200, Leif B. Kristensen wrote:
Quote:
On Wednesday 14. June 2006 11:38, Martijn van Oosterhout wrote:
Why did you put parenthesis there? It looks like you're making a
record within a record. You wouldn't have parenthesis there for a
normal select statement, would you?

s**t. When I remove the parentheses, it runs fine.

This is a little contrary to common programmer philosophy, where putting
in extra parentheses for clarity is considered Good Practice[TM].

Except in cases where it changes the meaning, obviously.

I suppose if the SQL standard had chosen something else for row
constructors (like [] or {}) what you typed would've been a syntax
error rather than being valid.

Have a nice day,
--
Martijn van Oosterhout <kleptog@svana.org> http://svana.org/kleptog/
> From each according to his ability. To each according to his ability to litigate.
Back to top
SCassidy@overlandstorage.
*nix forums beginner


Joined: 28 Jul 2005
Posts: 18

PostPosted: Wed Jun 14, 2006 8:51 pm    Post subject: Re: table has many to many relationship with itself - how Reply with quote

Starting with this:

create sequence languages_seq increment by 1;
create table languages (
id integer primary key default nextval('languages_seq'),
language_name varchar(100)
);
insert into languages (id, language_name) values (1, 'English');
insert into languages (id, language_name) values (2, 'French');
insert into languages (id, language_name) values (3, 'Spanish');
insert into languages (id, language_name) values (4, 'Italian');

create table phrases(
id serial primary key,
language integer references languages(id),
content text
);
insert into phrases (language, content) values (1, 'the book');
insert into phrases (language, content) values (2, 'le livre');
insert into phrases (language, content) values (3, 'el libro');
insert into phrases (language, content) values (4, 'il libro');
insert into phrases (language, content) values (1, 'the room');
insert into phrases (language, content) values (4, 'la stanza');
insert into phrases (language, content) values (4, 'la camera');


For your translations table, I would go with something like this:


create sequence translations_seq increment by 1;
create table translations (
translation_id integer primary key default nextval('translations_seq'),
lang1_id integer references phrases(id),
lang2_id integer references phrases(id)
);


(I like specifying my own sequence names, instead of using "serial", plus
using a default this way lets me insert an integer directly, when
necessary, or letting it default, but you can use serial, if you want).

That lets you insert rows for multiple to/from pairs. Also, some words
have multiple meanings, or more than one word has the same meaning. For
example, the English word "room" can be either "camera" or "stanza" in
Italian.

testdb1=> select * from phrases;
id | language | content
----+----------+-----------
1 | 1 | the book
2 | 2 | le livre
3 | 3 | el libro
4 | 4 | il libro
5 | 1 | the room
6 | 4 | la stanza
7 | 4 | la camera
(7 rows)

testdb1=> insert into translations (lang1_id, lang2_id) values (1, 2);
INSERT 666949 1
testdb1=> insert into translations (lang1_id, lang2_id) values (1, 3);
INSERT 666950 1
testdb1=> insert into translations (lang1_id, lang2_id) values (1, 4);
INSERT 666953 1
testdb1=> insert into translations (lang1_id, lang2_id) values (5, 6);
INSERT 666954 1
testdb1=> insert into translations (lang1_id, lang2_id) values (5, 7);
INSERT 666955 1

Then, you can do this:
select p.content from phrases p where p.id in (select lang2_id from
translations where lang1_id = 5);
content
-----------
la stanza
la camera
(2 rows)

I assume that this is a fairly simple "phrasebook" type of data set.
Partly, the structure depends on how you intend to access the data after
you build it.

Just an idea.

Susan



"Daniel McBrearty"
<danielmcbrearty@gmail. To: pgsql-general@postgresql.org
com> cc:
Sent by: Subject: [GENERAL] table has many to many relationship with itself - how to
implement?

pgsql-general-owner@pos |-------------------|
tgresql.org | [ ] Expand Groups |
|-------------------|

06/14/2006 01:53
AM






Hi all,

I have a table "phrases" that looks like this :

create table phrases(
id serial ,
language integer references langauges(id),
content text
);


Simply a word or phrase in some language.

Now I want to express the concept of a "translation". A translation is
a number of phrases from different languages that are a translation of
each other. There is nothing else to say about a translation - though
it does need to be referencable by other tables, so it needs an ID.

One way to do this is with these two tables:

create table translations (
id serial primary key
);

create table translations_to_phrases (
translation_id integer references translations(id),
phrase_id integer references phrases(id),
primary key (translation_id, phrase_id)
);

Now this actually works as a data structure; the translations table is
a bit odd, having only an id, but that is all we really need.

Can I do this though? can I create a row in translations?

insert into table translations ... insert what?

The other way to do this that I see is to lose the link table
translations_to_phrases, and then make translations

create table translations (
id serial primary key,
phrases integer[]
);


but it seems that I can no longer make postgre aware that the integers
in translations(phrases) are references.

What is the best solution?

Thanks

Daniel

--
Daniel McBrearty
email : danielmcbrearty at gmail.com
www.engoi.com : the multi - language vocab trainer
BTW : 0873928131

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match





----------------------------------------------------------------------------------------------
Simply protected storage solutions ensure that your information is
automatically safe, readily available and always there, visit us at http://www.overlandstorage.com
----------------------------------------------------------------------------------------------


---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster
Back to top
Daniel McBrearty
*nix forums beginner


Joined: 30 Apr 2005
Posts: 39

PostPosted: Wed Jun 14, 2006 10:14 pm    Post subject: Re: table has many to many relationship with itself - how Reply with quote

thanks Susan for your idea.

I thought that was it for a moment, then I saw a problem (I think) -
it works, but gets quite inefficient.

when you have 2 phrases which are a translation, that is just one entry

when you have 3, that is 3
4 => 6

and so on.

In practice we might have 15, 20 languages in a translation. It is
unlimited many-to-many.

So the problem is a bit to do this while keeping the solution efficient.

I am almost sold on just using

create table translaton (
id serial,
phrases integer[]
);

but afaik there is no way to tell pg that the array contains refs to
another table. I could still live with this though, if noone has a
better way.

regards

Daniel


--
Daniel McBrearty
email : danielmcbrearty at gmail.com
www.engoi.com : the multi - language vocab trainer
BTW : 0873928131

---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match
Back to top
John Burger
*nix forums addict


Joined: 29 Mar 2005
Posts: 61

PostPosted: Wed Jun 14, 2006 10:32 pm    Post subject: Re: table has many to many relationship with itself - how Reply with quote

SCassidy@overlandstorage.com wrote:

Quote:
Starting with this:

create sequence languages_seq increment by 1;
create table languages (
id integer primary key default nextval('languages_seq'),
language_name varchar(100)
);

(I like specifying my own sequence names, instead of using "serial",
plus
using a default this way lets me insert an integer directly, when
necessary, or letting it default, but you can use serial, if you want).

You can always insert your own value into a SERIAL column. From the
8.1 docs:

Quote:
The data types serial and bigserial are not true types, but merely a
notational convenience for setting up unique identifier columns
(similar to the AUTO_INCREMENT property supported by some other
databases). In the current implementation, specifying

CREATE TABLE tablename (
colname SERIAL
);

is equivalent to specifying:

CREATE SEQUENCE tablename_colname_seq;
CREATE TABLE tablename (
colname integer DEFAULT nextval('tablename_colname_seq') NOT NULL
);

(http://www.postgresql.org/docs/8.1/interactive/datatype.html#DATATYPE-
SERIAL)

Your example above differs only in the sequence name (plus you have a
PK constraint, but you can do this on a SERIAL column too).

- John D. Burger
MITRE


---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings
Back to top
Nitin Verma
*nix forums beginner


Joined: 15 Jun 2006
Posts: 8

PostPosted: Fri Jun 16, 2006 7:23 am    Post subject: Re: VACUUMing sometimes increasing database size / sometimes Reply with quote

Will 7.3.2 Dump made up of copies using pg_dump import without any migration
to 8.0+? What I need isn't a once process and will go as a automated script,
in a way that user will not even get to know (if he isn't reading that logs)
Database version changed. Considering that even a remote problem in export
and import across versions may hit. So please let me know all the do's and
don'ts... or the pointers to those.


-----Original Message-----
From: Jim Nasby [mailto:jnasby@pervasive.com]
Sent: Friday, June 16, 2006 1:54 AM
To: Florian G.Pflug
Cc: Nitin Verma; pgsql-general@postgresql.org
Subject: Re: [GENERAL] VACUUMing sometimes increasing database size /
sometimes

On Jun 15, 2006, at 1:16 PM, Florian G. Pflug wrote:

Quote:
Nitin Verma wrote:
Were these bugs fixed by 7.3.2, if not what version should I look
for?
http://archives.postgresql.org/pgsql-admin/2001-06/msg00005.php
http://archives.postgresql.org/pgsql-hackers/2000-04/msg00083.php
Ahm... 7.3.2 is *very* outdated. The current version of postgresql is
8.1.4.

The mails you linked are from the year 2001 (!), and concern 6.5
(!!) - A lot of things have changed in postgres since then ;-)

None of the problems discussed there should trouble postgres
anymore, if
you use a at least remotely recent version (Say, >= 8.0, or 7.4
*at* *the* *very* *least*).

And if you are going to stick with 7.3, at least get the latest
version of it.

As for searching for bugs... http://archives.postgresql.org/pgsql-bugs/
--
Jim C. Nasby, Sr. Engineering Consultant jnasby@pervasive.com
Pervasive Software http://pervasive.com work: 512-231-6117
vcard: http://jim.nasby.net/pervasive.vcf cell: 512-569-9461



---------------------------(end of broadcast)---------------------------
TIP 3: Have you checked our extensive FAQ?

http://www.postgresql.org/docs/faq
Back to top
Doug McNaught
*nix forums Guru Wannabe


Joined: 16 Mar 2005
Posts: 215

PostPosted: Fri Jun 16, 2006 11:03 am    Post subject: Re: VACUUMing sometimes increasing database size / Reply with quote

"Nitin Verma" <nitinverma@azulsystems.com> writes:

Quote:
Will 7.3.2 Dump made up of copies using pg_dump import without any migration
to 8.0+? What I need isn't a once process and will go as a automated script,
in a way that user will not even get to know (if he isn't reading that logs)
Database version changed. Considering that even a remote problem in export
and import across versions may hit. So please let me know all the do's and
don'ts... or the pointers to those.

It will very likely have problems. The usual recommended procedure is
to use the version of pg_dump that comes with the PG that you're
upgrading *to* against the old database; e.g. you'd use the 8.0+
pg_dump and tell it to connect to the 7.3.2 database.

You should really upgrade from 7.3.2, at least to the latest point
release in the 7.3 series, and have a plan to go to 8.0 or 8.1,
because 7.3 won't be supported for that much longer (if it even is
right now).

-Doug

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster
Back to top
Florian Pflug
*nix forums Guru Wannabe


Joined: 03 Mar 2005
Posts: 100

PostPosted: Fri Jun 16, 2006 11:18 am    Post subject: Re: VACUUMing sometimes increasing database size / sometimes Reply with quote

Douglas McNaught wrote:
Quote:
"Nitin Verma" <nitinverma@azulsystems.com> writes:

Will 7.3.2 Dump made up of copies using pg_dump import without any migration
to 8.0+? What I need isn't a once process and will go as a automated script,
in a way that user will not even get to know (if he isn't reading that logs)
Database version changed. Considering that even a remote problem in export
and import across versions may hit. So please let me know all the do's and
don'ts... or the pointers to those.

It will very likely have problems. The usual recommended procedure is
to use the version of pg_dump that comes with the PG that you're
upgrading *to* against the old database; e.g. you'd use the 8.0+
pg_dump and tell it to connect to the 7.3.2 database.

Note that even if your 7.3 dump restores fine on 8.1 (How likely that is
depends on the complexity of your schema), you might still experience
problems, if your application depends on things that changed between 7.3
and 8.1. Postgres tends to become more strict with every release, so
there are things you got away with in 7.3 which now cause an error message.

So, you shouldn't upgrade database version "behind a users back". You'll
need to test his applikations against the new version, or at least tell
him that there might be problems.

Quote:
You should really upgrade from 7.3.2, at least to the latest point
release in the 7.3 series, and have a plan to go to 8.0 or 8.1,
because 7.3 won't be supported for that much longer (if it even is
right now).

If 8.0 or 8.1 is too big a step for you, you could consider moving to
7.4. I don't know if 7.3 already supported schemas, but if it did, then
the chance of breakage is a lot smaller if you switch to 7.4 compared to
switching to 8.1. OTOH, one day 7.4 will be unsupported too, and then
you'll need to switch anyway.

greetings, Florian Pflug


---------------------------(end of broadcast)---------------------------
TIP 9: In versions below 8.0, the planner will ignore your desire to
choose an index scan if your joining column's datatypes do not
match
Back to top
Nitin Verma
*nix forums beginner


Joined: 15 Jun 2006
Posts: 8

PostPosted: Fri Jun 16, 2006 12:04 pm    Post subject: Re: VACUUMing sometimes increasing database size / sometimes Reply with quote

Quote:
if your application depends on things that changed between 7.3 and 8.1.
Postgres tends to become more strict with every release, so
there are things you got away with in 7.3 which now cause an error
message.

Do we have change lists where I can see all the changes between 7.3 and 8.1,
may be release by release?

-----Original Message-----
From: Florian G. Pflug [mailto:fgp@phlo.org]
Sent: Friday, June 16, 2006 4:48 PM
To: Douglas McNaught
Cc: Nitin Verma; Jim Nasby; pgsql-general@postgresql.org
Subject: Re: [GENERAL] VACUUMing sometimes increasing database size /
sometimes

Douglas McNaught wrote:
Quote:
"Nitin Verma" <nitinverma@azulsystems.com> writes:

Will 7.3.2 Dump made up of copies using pg_dump import without any
migration
to 8.0+? What I need isn't a once process and will go as a automated
script,
in a way that user will not even get to know (if he isn't reading that
logs)
Database version changed. Considering that even a remote problem in export
and import across versions may hit. So please let me know all the do's and
don'ts... or the pointers to those.

It will very likely have problems. The usual recommended procedure is
to use the version of pg_dump that comes with the PG that you're
upgrading *to* against the old database; e.g. you'd use the 8.0+
pg_dump and tell it to connect to the 7.3.2 database.

Note that even if your 7.3 dump restores fine on 8.1 (How likely that is
depends on the complexity of your schema), you might still experience
problems, if your application depends on things that changed between 7.3
and 8.1. Postgres tends to become more strict with every release, so
there are things you got away with in 7.3 which now cause an error message.

So, you shouldn't upgrade database version "behind a users back". You'll
need to test his applikations against the new version, or at least tell
him that there might be problems.

Quote:
You should really upgrade from 7.3.2, at least to the latest point
release in the 7.3 series, and have a plan to go to 8.0 or 8.1,
because 7.3 won't be supported for that much longer (if it even is
right now).

If 8.0 or 8.1 is too big a step for you, you could consider moving to
7.4. I don't know if 7.3 already supported schemas, but if it did, then
the chance of breakage is a lot smaller if you switch to 7.4 compared to
switching to 8.1. OTOH, one day 7.4 will be unsupported too, and then
you'll need to switch anyway.

greetings, Florian Pflug


---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly
Back to top
Richard Huxton
*nix forums Guru


Joined: 01 Mar 2005
Posts: 522

PostPosted: Fri Jun 16, 2006 12:59 pm    Post subject: Re: VACUUMing sometimes increasing database size / sometimes Reply with quote

Nitin Verma wrote:
Quote:
if your application depends on things that changed between 7.3 and 8.1.
Postgres tends to become more strict with every release, so
there are things you got away with in 7.3 which now cause an error
message.

Do we have change lists where I can see all the changes between 7.3 and 8.1,
may be release by release?

Try the manuals where there are version-by-version details of changes in
the release-notes.

http://www.postgresql.org/docs/8.1/static/release.html

--
Richard Huxton
Archonet Ltd

---------------------------(end of broadcast)---------------------------
TIP 1: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to majordomo@postgresql.org so that your
message can get through to the mailing list cleanly
Back to top
Nitin Verma
*nix forums beginner


Joined: 15 Jun 2006
Posts: 8

PostPosted: Fri Jun 16, 2006 2:27 pm    Post subject: Re: VACUUMing sometimes increasing database size / sometimes Reply with quote

Thanx so much which would really help

-----Original Message-----
From: Richard Huxton [mailto:dev@archonet.com]
Sent: Friday, June 16, 2006 6:29 PM
To: Nitin Verma
Cc: pgsql-general@postgresql.org
Subject: Re: [GENERAL] VACUUMing sometimes increasing database size /
sometimes

Nitin Verma wrote:
Quote:
if your application depends on things that changed between 7.3 and 8.1.

Postgres tends to become more strict with every release, so
there are things you got away with in 7.3 which now cause an error
message.

Do we have change lists where I can see all the changes between 7.3 and
8.1,
may be release by release?

Try the manuals where there are version-by-version details of changes in
the release-notes.

http://www.postgresql.org/docs/8.1/static/release.html

--
Richard Huxton
Archonet Ltd

---------------------------(end of broadcast)---------------------------
TIP 6: explain analyze is your friend
Back to top
Nitin Verma
*nix forums beginner


Joined: 15 Jun 2006
Posts: 8

PostPosted: Fri Jun 16, 2006 2:33 pm    Post subject: Re: VACUUMing sometimes increasing database size / sometimes Reply with quote

$ ls -al pgsqldb/pg_xlog
total 32816
drwx------ 2 nitinverma root 4096 Jun 16 19:53 .
drwx------ 6 nitinverma root 4096 Jun 16 19:33 ..
-rw------- 1 nitinverma root 16777216 Jun 16 20:08 0000000000000001
-rw------- 1 nitinverma root 16777216 Jun 16 19:45 0000000000000002

Looks like if a WAL file is created even vacuum can't reclaim the space. Is
that the root cause behind DB bloating with 7.3.2?

-----Original Message-----
From: Richard Huxton [mailto:dev@archonet.com]
Sent: Friday, June 16, 2006 6:29 PM
To: Nitin Verma
Cc: pgsql-general@postgresql.org
Subject: Re: [GENERAL] VACUUMing sometimes increasing database size /
sometimes

Nitin Verma wrote:
Quote:
if your application depends on things that changed between 7.3 and 8.1.

Postgres tends to become more strict with every release, so
there are things you got away with in 7.3 which now cause an error
message.

Do we have change lists where I can see all the changes between 7.3 and
8.1,
may be release by release?

Try the manuals where there are version-by-version details of changes in
the release-notes.

http://www.postgresql.org/docs/8.1/static/release.html

--
Richard Huxton
Archonet Ltd

---------------------------(end of broadcast)---------------------------
TIP 5: don't forget to increase your free space map settings
Back to top
Bill Moran
*nix forums beginner


Joined: 06 Jun 2003
Posts: 22

PostPosted: Fri Jun 16, 2006 2:41 pm    Post subject: Re: VACUUMing sometimes increasing database size / Reply with quote

In response to "Nitin Verma" <nitinverma@azulsystems.com>:

Quote:
$ ls -al pgsqldb/pg_xlog
total 32816
drwx------ 2 nitinverma root 4096 Jun 16 19:53 .
drwx------ 6 nitinverma root 4096 Jun 16 19:33 ..
-rw------- 1 nitinverma root 16777216 Jun 16 20:08 0000000000000001
-rw------- 1 nitinverma root 16777216 Jun 16 19:45 0000000000000002

Looks like if a WAL file is created even vacuum can't reclaim the space. Is
that the root cause behind DB bloating with 7.3.2?

All versions of Postgresql generate WAL logs. This is not bloat, this is
space required for normal operation of the database system.

I believe the defaults are to create 4 files, 16M each, and then rotate
through them. If you've only got two files so far, this must be a
fairly new installation.

http://www.postgresql.org/docs/8.1/interactive/wal-configuration.html

--
Bill Moran
Collaborative Fusion Inc.

---------------------------(end of broadcast)---------------------------
TIP 2: Don't 'kill -9' the postmaster
Back to top
Google

Back to top
Display posts from previous:   
Post new topic   Reply to topic Page 69 of 71 [1061 Posts] Goto page:  Previous  1, 2, 3, ..., 67, 68, 69, 70, 71 Next
View previous topic :: View next topic
The time now is Tue Dec 02, 2008 6:32 am | All times are GMT
navigation Forum index » Databases » PostgreSQL
Jump to:  

Similar Topics
Topic Author Forum Replies Last Post
No new posts to_char number format with optional decimal-point? Martin T. Oracle 3 Thu Jul 20, 2006 10:53 am
No new posts strange behaviour using to_char to return daynumber mich (at work) Oracle 4 Mon Apr 24, 2006 12:40 pm
No new posts to_char not returning 'day' value without leading zero Kevin Blount Oracle 3 Thu Apr 06, 2006 9:32 pm
No new posts to_char syntax Liz J Oracle 6 Thu Feb 23, 2006 12:10 am
No new posts to_char (33, '0009') adds an extra white space Günther De Vogelaere Oracle 2 Mon Jan 09, 2006 1:03 pm

Free All Ebook PDF Download | Property in Spain | Loans | Electricity Suppliers | Cheap Loan
Copyright © 2004-2005 DeniX Solutions SRL
 
Other DeniX Solutions sites: Unix/Linux blog |  electronics forum |  medicine forum |  science forum | 
Privacy Policy


Powered by phpBB © 2001, 2005 phpBB Group
[ Time: 7.9009s ][ Queries: 16 (7.7283s) ][ GZIP on - Debug on ]