Tiziano Slack wrote:
Thanks for the precious tips, but unfortunately the syntax:
EXECUTE 'INSERT INTO '|| TG_TABLE_NAME ||' SELECT '|| NEW.*;is parsed
correctly, but when the trigger is fired the following error is returned
ERROR: column "*" not found in data type mytable
CONTEXT: SQL stateme
Thanks for the precious tips, but unfortunately the syntax:
EXECUTE 'INSERT INTO '|| TG_TABLE_NAME ||' SELECT '|| NEW.*;is parsed
correctly, but when the trigger is fired the following error is returned
ERROR: column "*" not found in data type mytable
CONTEXT: SQL statement "SELECT 'INSERT INT
At 06:54 PM 2/6/2008, Medi Montaseri wrote:
Thanks Steve...
And finally you mentioned that bank accounts are tricky...can you
expand on this please. After all I am under the impression that "bank
accounts" are a corner stone of this whole book keeping...I
mean...bank accounts have debits and
Medi Montaseri wrote:
Hi,
I am learning my way into Accounting and was wondering how Accounting
applications are designed. perhaps you could point the way
On one hand, accountants talk about a sacret equation A = L + OE (Asset
= Libility + Owner Equity) and then under each categories the
Thanks Steve...
This is all well and good...I am getting it...but I need to chew on it
moregnucash was a good one...didn't think of thatgot to get passed
all the GUI stuff...but...excellent ref...
I suppose instead of AR and AP tables, I can just have one table called
Entry (thanks Joe
At 05:09 PM 2/6/2008, [EMAIL PROTECTED] wrote:
Date: Wed, 6 Feb 2008 17:08:54 -0800
From: "Medi Montaseri" <[EMAIL PROTECTED]>
To: pgsql-sql@postgresql.org
Subject: accounting schema
Message-ID:
<[EMAIL PROTECTED]>
Hi,
I am learning my way into Accounting and was wondering how Accounting
appl
On Wednesday 06 February 2008 03:37:22 pm Tom Lane wrote:
> johnf <[EMAIL PROTECTED]> writes:
> > Assume a standard install on Linux (what ever that means). Would a
> > normal user have access to information schema? I have a front end
> > written in python that accesses tables and permissions are
Hi,
I am learning my way into Accounting and was wondering how Accounting
applications are designed. perhaps you could point the way
On one hand, accountants talk about a sacret equation A = L + OE (Asset =
Libility + Owner Equity) and then under each categories there are one or
many account.
Considering how related Created Types and
Tables are (at least conceptually)
it seems like a good idea to allow
Created Types to be used in the Like clause.
At least it would help me and make maintaining
my db easier and cleaner.
TJ O'Donnell
http://www.gnova.com/
> "TJ O'Donnell" <[EMAIL PROTECT
johnf <[EMAIL PROTECTED]> writes:
> Assume a standard install on Linux (what ever that means). Would a normal
> user have access to information schema? I have a front end written in python
> that accesses tables and permissions are set based on roles. But I do
> nothing with respect to the in
"TJ O'Donnell" <[EMAIL PROTECTED]> writes:
> Create Type xtype As (a Integer, b Text);
> Create Table xtest (Like xtype);
> ERROR: "xtype" is a composite type
Hmmm ... as you see, that's disallowed, but offhand it seems like it
wouldn't be very hard to allow it. It might be as simple as relaxing
Colin Wetherbee wrote:
Tom Hart wrote:
Let me preface this by saying hello SQL list, and I'm an idiot. My
SQL knowledge is advanced to the point of being able to use a WHERE
clause basically, so I appreciate your business. Now on to my issue
I have 3 tables I'm trying to use in this query: lo
Tom Hart wrote:
Let me preface this by saying hello SQL list, and I'm an idiot. My SQL
knowledge is advanced to the point of being able to use a WHERE clause
basically, so I appreciate your business. Now on to my issue
I have 3 tables I'm trying to use in this query: loan, share and draft
(
Tom Hart wrote:
Let me preface this by saying hello SQL list, and I'm an idiot. My SQL
knowledge is advanced to the point of being able to use a WHERE clause
basically, so I appreciate your business. Now on to my issue
I have 3 tables I'm trying to use in this query: loan, share and draft
(fo
Let me preface this by saying hello SQL list, and I'm an idiot. My SQL
knowledge is advanced to the point of being able to use a WHERE clause
basically, so I appreciate your business. Now on to my issue
I have 3 tables I'm trying to use in this query: loan, share and draft
(for those of you no
On Wed, 06 Feb 2008 16:01:09 -0500
PostgreSQL Admin <[EMAIL PROTECTED]> wrote:
> I want to find any value:
>
> SELECT id FROM schedule WHERE clinic_id = '%s' AND date = '%s'
>
> But I want to make sure the clinic exist first then find if the date
> exist 2nd.
I'm not sure what you mean by "firs
Assume a standard install on Linux (what ever that means). Would a normal
user have access to information schema? I have a front end written in python
that accesses tables and permissions are set based on roles. But I do
nothing with respect to the information schema view. I would like my pr
Simple question - but my brain is not working:
This is my table
Column | Type |
Modifiers
---++-
id| integer
Steve Midgley wrote on 06.02.2008 21:33:
Hi,
I see this documentation item but can't figure out how to use it:
http://www.postgresql.org/docs/8.2/interactive/infoschema-columns.html
The view columns contains information about all table columns (or view
columns) in the database.
select colum
Hi,
I see this documentation item but can't figure out how to use it:
http://www.postgresql.org/docs/8.2/interactive/infoschema-columns.html
The view columns contains information about all table columns (or view
columns) in the database.
However, if I execute "select columns;" I get a not fo
I know I can create a table using names and types from an existing
table.
Create Table xtable (a Integer, b Text);
Create Table xtest (Like xtable);
This works just fine.
I want to create a table having the same column names and types as
an existing new datatype.
Create Type xtype As (a Intege
Sabin Coanda wrote:
Hi there,
I have a procedure where a dead-lock occurs, and I'm trying to find the
tables involved in the lock.
Unfortunatelly, I don't find the related objects of the oids of "relation"
field. Also all the fields "classid" and "objid" are null.
May I suppose there were
Hi there,
I have a procedure where a dead-lock occurs, and I'm trying to find the
tables involved in the lock.
Unfortunatelly, I don't find the related objects of the oids of "relation"
field. Also all the fields "classid" and "objid" are null.
May I suppose there were references to temporary
23 matches
Mail list logo