For implementing "Multi-relation/column keyword indices", which modules
of postgres might be required to change or look into?
BTW anyone has clear idea about "Multi-relation/column keyword indices"?
Cheers,
---(end of broadcast)---
TIP 4: Have you
Hi all,
I am new to postgres developement. Want some help.
Can we run nested query in postgres?
Means, can I do like -
When somequery is being executed (say "create database") it goes through
exec_simple_query():backend/tcop/postgres.c (if I am not wrong) then can
I call exec_simple_query() from c
If there are multiple databases, say db1 and db2.
And currently we are in db1, can we create table in db2 (without
switching databases)?
Is there any query to do this?
- Paresh
---(end of broadcast)---
TIP 4: Have you searched our list archives?
Is there any way to retrieve table name and/or tuple values from OID of
table/tuple?
---(end of broadcast)---
TIP 5: don't forget to increase your free space map settings
:regclass;
>
> Where 12341234 is the OID of a table.
>
> Otherwise try:
>
> SELECT tableoid, * FROM table;
>
> To get the tableoid on each row.
>
> Chris
>
> Paresh Bafna wrote:
>
>> Is there any way to retrieve table name and/or tuple values from OID of
&g