Well, do you actually have an interface with that address?
A
--
Andrew Sullivan | [EMAIL PROTECTED]
"The year's penultimate month" is not in truth a good way of saying
November.
--H.W. Fowler
---(end of broadcast)-
hich benefit includes "easier to debug queries").
There is a probably non-zero cost to the extra joins.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Unfortunately reformatting the Internet is a little more painful
than reformatting your hard drive when it gets ou
ect
nextval(). Then you can insert it as currval() for all your other
INSERTs. No, there is no race condition or concurrency problem: see
the docs on these functions. No locks.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
When my information changes, I alter my conclusions. What do
t
already have been rewritten, I think. No? I _think_ that even
BEFORE triggers happen after the rewriter stage is called, but
someone who has more clue will be able to correct me if I'm wrong.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Everything that happens in the world happens at some place
ainly, I have been saying is that your plan to get the list of
transform commands is fundamentally misguided. If you want to track
changes, then that's what you should do: track what changed.
Note that there is a project that already, in fact, does this for you
as part of how it works: Sl
to find a solution for it.
Ah. That was not, in fact, clear to me. What is it about Slony that
doesn't solve this problem? You've checked it out, right?
<http://www.slony.info> will get you there.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
If they don't do anything,
t doesn't tell you what the
database looks like. It tells you what commands were sent. What
about triggers? Rules? For that matter, what about
SELECT now()
or
SELECT nextval()
?
--
Andrew Sullivan | [EMAIL PROTECTED]
This work was visionary and imaginative, and goes to show
eep two databases in two locations:
that's a matter of safety. Slony does it automatically, as long as
the daemon is running. No need to control it.
_Unless_ you want to be able to write in the second database. That's
a different problem. You can't do that with Slony.
A
--
Andrew
On Tue, Jun 27, 2006 at 02:48:38PM +0300, Forums @ Existanze wrote:
> Hello again andrew,
>
> Actually man I do need to be able to write to both databases, and keep them
> synchronized, and all this because of the recurring xenofobia for technology
Then sorry, but this can't b
Java," and then
start asking what problems you can solve, you can do anything ;-) I
prefer the strategy whereby one asks what the problem is to be solved
first, then choose the technology.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
I remember when computers were frustrating because they *did*
on md5). Primary keys have to be
unique, of course.
I _think_ with a hundred columns, you could probably prove (using
brute force, if need be) that the hashes are going to be unique,
assuming the list of possible values in each column is bounded.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
A c
int, I thought.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The whole tendency of modern prose is away from concreteness.
--George Orwell
---(end of broadcast)---
TIP 9: In versions below 8.0, the planner will ignore your desire to
choos
a unique contraint.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
"The year's penultimate month" is not in truth a good way of saying
November.
--H.W. Fowler
---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster
ave to cope with the error. It's
probably an acceptable cheat, as you're right that the collision risk
is pretty small.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
If they don't do anything, we don't need their acronym.
--Josh Hamilton, on the US FEMA
en.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Everything that happens in the world happens at some place.
--Jane Jacobs
---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster
old city map will
tell you that even this "impossible case" is by no means impossible.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
This work was visionary and imaginative, and goes to show that visionary
and imaginative work need not end up well.
--Dennis Ri
actually any product that does this right now,
unless you're willing to use some sort of statement replica system
(which means you have to deal with failures in one database and not
another). Is the idea that this is multi-master?
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The fact that
ould allow you to run slony daemons that connected to it and a
> postgresql server and did replication. Just mad scientisting for a
> second.
Well, yes, but that's why I asked whether it's multimaster. Because
if so, it'll be at least tricky to do under Slony I.
A
--
Andrew
I have a client with the following EAV inspired schema.
CREATE TABLE many_tables (
table_id text primary key,-- defines which virtual table is
encoded
attribute1 text,
attribute2 text,
attribute3 text,
attribute4 text,
...
);
I'd like to use a mix of constraint bas
1) If you don't know how to write the SQL for this, then you might want
to ask yourself if you have sufficient expertise to write a tool which
generates such queries.
2) I have seen many attempts at query generators. I have yet to see a
design which achieves a good balance between simplicity and
f
Gregory Stewart wrote:
> I am trying to do something like this:
>
> SELECT SUM(sales_today) AS sales_today_total, SUM(sales_lastweek) AS
> sales_lastweek_total
> CASE WHEN sales_today_total = '0' THEN '0'::int4 WHEN sales_lastweek_total =
> '0' THEN '0'::int4 ELSE ((100/sales_today_total*sales_las
prised that casual users can accidentally do a
5-way Cartesian product. But it would make no difference if the
commands were specified in natural language, because the conceptual
confusion is the problem.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
A certain description of men are for getting out
Martin Marques wrote:
> On Sun, 23 Jul 2006, Alvaro Herrera wrote:
>
> > Martin Marques escribió:
> >>
> >> After the SELECT FOR UPDATE other transactions can still see the locked
> >> rows. I want a read/write lock, so no one can access does rows.
> >
> > SELECT FOR UPDATE acquires an exclusive l
7.4.1 is quite old and has a number of serious known bugs. I'd suggest
you either upgrade to 8.1.4 (current) or, if you can't do that, at
least upgrade to 7.4.13 (latest 7.4) immediately.
Hilary Forbes wrote:
> Tom
>
> Thank you - I think that the underlying problem is that I was trying out
>
>
uncate a table to clear
enough space. Deleting anything under pg_xlog is more or less
guaranteed to mean your database is garbage.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
If they don't do anything, we don't need their acronym.
--Josh Hamilton, on the US FEMA
---
the best approach. It has the
problem that COMMITs of this data aren't atomic (the file write could
succeed and the database write fail, for example). But that can
usually be worked around, and at least you're not bulking your
database with binaries.
A
--
Andrew Sullivan | [EMA
tance?
The postgresql documentation seems to suggest that I can use the RETURN QUERY
EXECUTE feature, or simply build my query with a string and execute it (I don't
see how the latter can protect me from SQL Injection though???)
Any help would be appreciated!
Thanks,
Andrew
ould help me to arrive at an optimal solution.
Cheers,
Andrew.
_
Download Messenger onto your mobile for free
http://clk.atdmt.com/UKM/go/174426567/direct/01/
question more clear.
Thanks,
Andrew.
> Date: Fri, 23 Oct 2009 20:10:48 +0200
> Subject: Re: [SQL] Table Valued Parameters
> From: pavel.steh...@gmail.com
> To: andre...@hotmail.com
> CC: pgsql-sql@postgresql.org
>
> Hello
>
> 2009/10/23 Andrew Hall :
> > Hi,
> &
e to express my thanks to you for taking the time to
suggest an approach.
Cheers,
Andrew.
> Date: Fri, 23 Oct 2009 20:32:37 +0200
> Subject: Re: FW: [SQL] Table Valued Parameters
> From: br...@zwartberg.com
> To: andre...@hotmail.com
> CC: pgsql-sql@postgresql.org
>
> 2
signed to a
user (or more accurately a 'login role') in postgreSQL?
Many thanks,
Andrew.
_
New Windows 7: Find the right PC for you. Learn more.
http://www.microsoft.com/uk/windows/buy/
the safe side.
Thanks,
Andrew.
_
Use Hotmail to send and receive mail from your different email accounts
http://clk.atdmt.com/UKM/go/186394592/direct/01/
cated
nature of the solution make the design poor?
(C) Should I not worry about this constraint at the DB level and just
enforce it at the application level?
Below are the tables, functions and triggers I was using.
Thanks!
Andrew
s
time. So do NOT follow up this email. This question belongs on
pgsql-general. If you have further questions pleease ask there.
The short answer is that you need to provide the user name in your
connect string.
cheers
andrew
--
Sent via pgsql-sql mailing list (pgsql-sql@postgresql.org
This does not exist in SQL. However you could achieve similar
functionality by doing a suitable query against the system info tables
to find out what columns are available and then building your query
appropriately.
For an example, try
psql -E -c '\d mytable'
Drew
Pit M. wrote:
> select *,!Blob
Tom Lane wrote:
> Rod Taylor <[EMAIL PROTECTED]> writes:
> > On Wed, 2006-08-02 at 09:19 -0400, Tom Lane wrote:
> >> Hmm ... the way I would have expected to work is
> >>
> >> alter table posts
> >> alter column deleted drop default,
> >> alter column deleted type char(1)
> >> using (case when dele
Tomski wrote:
> Hello!
> As many of you know, SQL Server (2000) has peculiar data type "timestamp"
> which is not SQL standard timestamp. In fact it is "rowversion" type. It
> makes tha field to be updated with current timestamp when row is updated or
> inserted.
> Is there any similiar functionali
I've been trying to figure out a good way to manage schema change
control for a while now. Since I have a development background, I
really want to find some way to check the schema into a SCM system like
CVS (for example). Just using a pg_dump doesn't work very well becase
there's no guarantee of c
On 8/11/06, Aaron Bono <[EMAIL PROTECTED]> wrote:
I put a create_dt and modify_dt column on every table and set the default to
now(). Then I use this trigger:
CREATE OR REPLACE FUNCTION "public"."modify_date_stamp_fn" () RETURNS SETOF
opaque AS
'
BEGIN
-- if a trigger insert or update oper
plication is going to give better performance than joining in the
database? This is what RDBMS _do_, for heaven's sake.
(I agree that your plan shows it's taking a long time. But that's a
different problem. We don't actually know what you want from your
query.)
A
--
Andrew
dcast)---
> 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
--
Andrew Sullivan | [EMAIL PROTECTED]
When my information changes, I alter my conclusions
records isn't very big.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Unfortunately reformatting the Internet is a little more painful
than reformatting your hard drive when it gets out of whack.
--Scott Morris
---(end of broadcast)--
he gain is going
to be demonstrable.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Everything that happens in the world happens at some place.
--Jane Jacobs
---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings
ou have two initially-unbound search terms there: ILIKE '%' and ~*
'.*' are automatically seqscans, because you have nowhere in the
index to start. If you really want to do this kind of unbound-string
query, you need to look into full text search. The above approach is
never goin
On Tue, Aug 15, 2006 at 10:25:00AM -0300, Jorge Godoy wrote:
> I'd like to see some sort of data partitioning in PostgreSQL.
Sure, I think everybody would. I think it's among the more
interesting problems we have.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The plural of anecdot
ok at tsearch2, probably.
If you had any way to enforce bounded searches, it'd be a different
matter: strings with initial matches but an unbound end are fast.
(You can do it the other way, too, by some tricks with reversing the
strings.)
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The fa
(This isn't completely safe. You can make it completely safe by
doing it in two transactions, but that's best left as an exercise for
the reader.)
A
--
Andrew Sullivan | [EMAIL PROTECTED]
If they don't do anything, we don't need their acronym.
--Josh Hamilto
derstand your question correctly, I think this is what the
various Normal Forms are for, no?
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Everything that happens in the world happens at some place.
--Jane Jacobs
---(end of broadcast)---
TIP
; more robust solution anyways.
Well, you could query the SQL-standard Information Schema.
Alternatively, you can query the system tables like pg_class. But if
you want the more standard one, use the tables under schema
information_schema. That's the reason there's a standard.
A
--
And
can make your physical data model resemble your logical
data model, rather than pounding with a big hammer on your logical
model to make the physical storage you have fit?
The database is not a filesystem. If you just need a filesystem and
a SQL-like interface to it, use MySQL 3.x.
A
--
Andrew Sulliva
e this
subject | keyword
subject1| keyword1 keyword2 keyword3
and you want every subject that matches on keyword2, then you have to
search this with SELECT subject WHERE keyword = '%keyword2%'. The
reason you have to do that is that your data is badly normalised. Is
that it?
ce of triggers:
> can I do that?
DEFAULT won't work for this case, I don't think; you want to set it
to the nextval() of the sequence or whatever it was you were trying
to do. But it's not messy: this is precisely the sort of thing
BEFORE triggers are good at.
A
--
Andrew Su
post more detail. Why
do you think you have table locks, to begin with?
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The plural of anecdote is not data.
--Roger Brinner
---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster
ning UPDATEs with that many
updates per minure makes me think that maybe you have a lot of dead
rows.
Anyway, none of this supports your claim that you're getting table
locks. The place to see what locks you are getting is pg_locks.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
In the future
hat column would be
an end_date column, default infinity. When an insert comes along,
you DO ALSO update the old row's end_date with a new column. Then
you do DISTINCT ON max(effective) and use a CASE statement to
suppress the infinity on the current rate.
Does that help?
--
Andrew Sullivan
letely general way, such that it could
be used for any arbitrary data, is a hard problem that might destroy
performance. It's also a pretty exotic feature. You might want to
ask on the -hackers list for more detail, though.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
This work was vi
a tutorial called EXPLAIN
explained. Google will help you -- just use that title, with maybe
"postgresql" tacked onto your search string.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The plural of anecdote is not data.
--Roger Brinner
---(end of broadc
On Wed, Aug 30, 2006 at 04:47:29PM -0400, Gregory Stark wrote:
>
> Do *any* databases implement SQL standard Assertions?
Somebody must've had an implementation, or it'd never have made it
into the spec ;-)
A
--
Andrew Sullivan | [EMAIL PROTECTED]
A certain description of men
mething you can
have, because of the way sets work.)
A
--
Andrew Sullivan | [EMAIL PROTECTED]
In the future this spectacle of the middle classes shocking the avant-
garde will probably become the textbook definition of Postmodernism.
--Brad Holland
proper. This is considerably better under recent releases, however,
and I think you'd find, if you used the strict mode in the most
recent release, that MySQL would choke on a query like you posted as
well.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The fact that technology doesn't work is n
talled,
and you've got a mismatch in versions. Be my first guess, anyway.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Users never remark, "Wow, this software may be buggy and hard
to use, but at least there is a lot of code underneath."
--Damien Katz
---
On Tue, Sep 05, 2006 at 10:30:19PM -0700, Dinesh Tiwari wrote:
> If any one have idea about this please help me.
My idea is that you ask on a list that supports MS SQL Server. This
isn't one.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
If they don't do anything, we don't
foo), it should read in full:
CREATE SEQUENCE foo START 1;
CREATE TABLE bar (id integer PRIMARY KEY DEFAULT nextval('foo'));
Andy
--
name: Andrew Chilton
web: http://kapiti.geek.nz/
---(end of broadcast)---
TIP 1: if posting/reading thro
s much. Alternatively, the standard SQL introductions would
get you there.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
In the future this spectacle of the middle classes shocking the avant-
garde will probably become the textbook definition of Postmodernism.
--Brad Holland
---
cient:
for name in `psql -c "select relname from pg_class where relkind =
'S'" dbname; do psql -c "select last_value from $name" dbname; done.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Unfortunately reformatting the Internet is a little more painful
than refor
ecause that's encoded
in the timestamp.
In general, I think timestamps without timezones are just a bad
idea.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
I remember when computers were frustrating because they *did* exactly what
you told them to. That actually
|"timezone" as timestamp from storetz where id = 1) as a;
timestamp
2006-10-03 12:00:00+00
(1 row)
A
--
Andrew Sullivan | [EMAIL PROTECTED]
When my information changes, I alter my conclusions. What do you do sir?
--attr. John Maynard Keynes
-
e the old table. If
you want to insert &c., you put some rules there.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Users never remark, "Wow, this software may be buggy and hard
to use, but at least there is a lot of code underneath."
--Damien Katz
---
gt;
> testing=# SELECT a.timestamp::timestamptz from (SELECT '2006-10-03
> 09:00'||"timezone" as timestamp from storetz where id = 1) as a;
>timestamp
>
> 2006-10-03 12:00:00+00
> (1 row)
2006-10-03 09:00:00-03 == 2
use you had char(3) there, and
not all time zones are 3 characters long). But to answer your
question, yes, it works. I just tried it.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Information security isn't a technological problem. It's an economics
problem.
. .
> I just think it could be occuring becouse of many constraints (7 at all)
. . .it could be, yes. Are all the other tables &c. indexed
correctly? VACUUMed and ANALYSEd?
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The whole tendency of modern prose is away from concreteness.
On Mon, Oct 09, 2006 at 11:01:17AM -0500, Aaron Bono wrote:
> On 10/5/06, Andrew Sullivan <[EMAIL PROTECTED]> wrote:
> >you want to insert &c., you put some rules there.
>
> If you do this you need to make the vie
ubscribed.
2. person subscribed
3. person sent mail
4. anti-dup filter didn't catch the dup mail
5. second mail goes through
6. moderator approves original mail
7. mail shows up again.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The fact that technology doesn't work is no ba
ts 0
>
> Did anybody knows if it is possible to control this matter ?
Sounds like your datatype doesn't match your input, and that you've
got a type that rounds. What's the datatype you're putting into?
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Users never remark, &quo
apes that are already identical, so they can use
the matching rules for that.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Everything that happens in the world happens at some place.
--Jane Jacobs
---(end of broadcast)-
modates these different things.
The trade-off is that comparing a record to another record won't
always work: because what a record is is not pre-determined, you
can't have determinate rules for comparing one record to another.
And without determinate rules, you can't have an equality
and
SELECT ROW(1,2).
The row's datatype(s) is(are) defined. The record's datatype isn't.
So you can have an equality operator for the row. You can see this
from the error message when you do this:
testing=# SELECT ROW(1,2) is distinct from ROW ('a','b')
t I'm
really past my Latin at this point, because even if I looked at the
code that supports the record type, I wouldn't understand it.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The whole tendency of modern prose is away from concreteness.
--George Orwell
-
On Thu, Nov 02, 2006 at 06:19:45PM +0530, Penchalaiah P. wrote:
>
> This is the table it contains some sample data.. but I want to see
> difference between
Between what?
A
--
Andrew Sullivan | [EMAIL PROTECTED]
"The year's penultimate month" is not in truth a goo
e some cases where the indexes on several tables simply won't work
-- if the condition is such that all the tables need to be compared
to one another, for instant, no index will help you, because you'll
end up pulling everything into memory before anything else can
happen.
A
--
Andrew Sulli
probably add the
second option without being nearly so invasive, though, and some people
might feel that that would be sufficient.
cheers
andrew
Chuck McDevitt wrote:
We treated quoted identifiers as case-specific, as the spec requires.
In the catalog, we stored TWO columns... The column name with
r is pseudo-random.
Often it's very good pseudo-random -- most of the time, good enough
for most purposes -- but it isn't true randomness of the sort that is
delivered by (for example) particle decay.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The plural of anecdote is not data.
On Wed, Jan 03, 2007 at 07:47:34PM +0530, [EMAIL PROTECTED] wrote:
>
> Yes, our application is supposed to know *immediately* that a change in
> the database has occurred since,
NOTIFY doesn't get you that anyway. It's _close_ to immediately, but
it's still asynch
med table that has a number of
now-empty slots can actually be a performance advantage, because new
rows don't need to increase the size of the table's on-disk file (so
you incur slightly less I/O). There's a "sweet spot" for this that
you can discover by testing.
A
--
A
r, a VACUUM FULL on the table in question ought to be
enough to get you the space back.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
The fact that technology doesn't work is no bar to success in the marketplace.
--Philip Greenspun
---(end of broadcast)
On Mon, Jan 15, 2007 at 02:44:15PM +, Ezequiel Luis Pellettieri wrote:
> Hi Andrew,
>
> Why don't you try droping all indexes exept but the constraints ones for
> each table.
I don't have the problem, so I don't know whether that will help.
> then you'll
les to
appear in the WHERE condition and the update expressions.
a
--
Andrew Sullivan | [EMAIL PROTECTED]
Users never remark, "Wow, this software may be buggy and hard
to use, but at least there is a lot of code underneath."
--Damien Katz
---(
correct, although maybe no faster).
The reason it isn't repeated, I bet, is that your connection is
persistent, so the information gets cached.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Everything that happens in the world happens at some place.
--Jane Jacobs
---(end of broadcast)---
TIP 2: Don't 'kill -9' the postmaster
8.1/interactive/functions-info.html#FUNCTIONS-INFO-ACCESS-TABLE
A
--
Andrew Sullivan | [EMAIL PROTECTED]
When my information changes, I alter my conclusions. What do you do sir?
--attr. John Maynard Keynes
---(end of broadcast)---
TIP
ing about is not a real
primary key, but an artificial one. The OP already has a real
primary key. SQL purists think artificial primary keys mean that you
haven't done enough normalisation. I'm going to remain silent on
that topic, though, so that we don't get a Thread That
se where it was five. Yes, the application needed
rewriting. But it was normalised :)
A
--
Andrew Sullivan | [EMAIL PROTECTED]
A certain description of men are for getting out of debt, yet are
against all taxes for raising money to pay it off.
--Alexander Hamilton
-
he temp table and EXECUTE the statement. The
problem is that the plan is cached for later re-use. Since the
cached plan has the id of a table that no longer exists, you get this
error. See the PL/pgSQL part of the manual for more on this.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Unfortunately
to be able to RIGHT OUTER JOIN the table you
just LEFT JOINed to to the next table using a different column.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Information security isn't a technological problem. It's an economics
problem.
--Bruce Schneier
7.4 series. 7.4.2 was a long
time ago, and I dimly remember something about data corruption early
in the 7.4 series. It could be the source of your problem.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
This work was visionary and imaginative, and goes to show that visionary
and imaginative wor
QL, as far as I know. If you want to use the empty string, you need
WHERE ean = ''
If you want instead ean to be NULL, use the traditional \N to signify
NULL on your way in, or define null some other way.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Users
On Tue, Jan 30, 2007 at 02:38:07PM +0100, Bart Degryse wrote:
> Andrew, I think you're wrong stating that Oracle would interpret
> NULL and empty string as equal. The Oracle databases I use (8, 9
> and 10) certainly make a distiction between both values. Maybe
> earlier versio
'
in it, and been surprised. Or at least, I think it's like that. I
do recall hearing a lot about how stupid Postgres was because it
didn't like something that worked "perfectly well" on Oracle, which I
was assured was the most SQL-compliant system on the planet.
Happil
cs/8.2/static/runtime-config-logging.html
A
--
Andrew Sullivan | [EMAIL PROTECTED]
If they don't do anything, we don't need their acronym.
--Josh Hamilton, on the US FEMA
---(end of broadcast)---
TIP 7: You can help su
7;ll see the COMMIT as
the thing that caused the error.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
Unfortunately reformatting the Internet is a little more painful
than reformatting your hard drive when it gets out of whack.
--Scott Morris
-
ry limitation on every program at compile time. There are some
hints about this in the FAQ_AIX.
A
--
Andrew Sullivan | [EMAIL PROTECTED]
When my information changes, I alter my conclusions. What do you do sir?
--attr. John Maynard Keynes
---(end of
201 - 300 of 396 matches
Mail list logo