Am looking for pointers related to cross-database queries?
Thanks in advance!
On Tue, Feb 5, 2013 at 10:42 PM, Dev Kumkar wrote:
> Hello everyone,
>
> Please can you point me to the contrib/dblink package links.
>
> What am actually looking for is query multiple database located on
> different
On 2013-02-06, JORGE MALDONADO wrote:
> --f46d0401fb2fcb805e04d50354b1
> Content-Type: text/plain; charset=ISO-8859-1
>
> I have an UPDATE query with the following general structure:
>
> UPDATE table1 SET (SELECT field FROM table2 WHERE conditions ORDER BY
> order_field LIMIT 1)
assuming you mean
I have a table with with an index that is of type 'timestamp without
time zone'. Multiple records are inserted per second so the index is not
unique.
This table experiences frequent inserts and updates. Bulk deletes are
performed once per month.
Slower than expected search times are experienced w
2013/2/6 JORGE MALDONADO :
> I have an UPDATE query with the following general structure:
>
> UPDATE table1 SET (SELECT field FROM table2 WHERE conditions ORDER BY
> order_field LIMIT 1)
>
> Is it possible to assign a default value in case no results are returned by
> the SELECT statement?
One opt
Hi Jorge,
Look on http://www.postgresql.org/docs/8.1/static/functions-conditional.html
Thanks,
Anton
On Feb 6, 2013, at 0:23, JORGE MALDONADO wrote:
> I have an UPDATE query with the following general structure:
>
> UPDATE table1 SET (SELECT field FROM table2 WHERE conditions ORDER BY
> order
I have an UPDATE query with the following general structure:
UPDATE table1 SET (SELECT field FROM table2 WHERE conditions ORDER BY
order_field LIMIT 1)
Is it possible to assign a default value in case no results are returned by
the SELECT statement?
Respectfully,
Jorge Maldonado
Hello everyone,
Please can you point me to the contrib/dblink package links.
What am actually looking for is query multiple database located on
different machines. Is there any documentation for same which tells the
metadata steps?
Existing archive link if exists please can you point me same.
Re