Is there a tool for designing databases(ERD to data Design) and being able
to generate scripts or databases from the tool.
Visio does a good job, but does not have a driver for PostgreSQL. The
scripts have to be modified before executing.
Thanks,
Thomas LeBlanc
__________________________________________________ _______________
Concerned that messages may bounce because your Hotmail account is over
limit? Get Hotmail Extra Storage! http://join.msn.com/?PAGE=features/es
---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings 9 5493
I recommend dia, and there are some tools around
to actual make schema from the diagrams and/or
vice versa.
Thomas LeBlanc wrote: Is there a tool for designing databases(ERD to data Design) and being able to generate scripts or databases from the tool.
Visio does a good job, but does not have a driver for PostgreSQL. The scripts have to be modified before executing.
--
P. J. "Josh" Rovero Sonalysts, Inc.
Email: ro****@sonalysts.com www.sonalysts.com 215 Parkway North
Work: (860)326-3671 or 442-4355 Waterford CT 06385
************************************************** *********************
---------------------------(end of broadcast)---------------------------
TIP 7: don't forget to increase your free space map settings
On Sat, 8 Nov 2003 03:57, Thomas LeBlanc wrote: Is there a tool for designing databases(ERD to data Design) and being able to generate scripts or databases from the tool.
Visio does a good job, but does not have a driver for PostgreSQL. The scripts have to be modified before executing.
Thanks, Thomas LeBlanc
dia and dia2sql. I think I got the latter from Debian non-free.
Use the UML option in dia, and dia2sql will generate your sql for you.
Bob
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to ma*******@postgresql.org
bob parker wrote: On Sat, 8 Nov 2003 03:57, Thomas LeBlanc wrote:
Is there a tool for designing databases(ERD to data Design) and being able to generate scripts or databases from the tool.
Eclipse has an ERD plugin that works with PostgreSQL www.eclispe.org
Visio does a good job, but does not have a driver for PostgreSQL. The scripts have to be modified before executing.
Thanks, Thomas LeBlanc
dia and dia2sql. I think I got the latter from Debian non-free. Use the UML option in dia, and dia2sql will generate your sql for you.
Bob
---------------------------(end of broadcast)--------------------------- TIP 1: subscribe and unsubscribe commands go to ma*******@postgresql.org
--
Command Prompt, Inc., home of Mammoth PostgreSQL - S/ODBC and S/JDBC
Postgresql support, programming shared hosting and dedicated hosting.
+1-503-222-2783 - jd@commandprompt.com - http://www.commandprompt.com
Editor-N-Chief - PostgreSQl.Org - http://www.postgresql.org
---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend
On Tue, 11 Nov 2003, Joshua D. Drake wrote: Eclipse has an ERD plugin that works with PostgreSQL
www.eclispe.org
It's called "Clay" and written by the fine folks at www.azzurri.jp. I just
started using it and I like it very much.
Rich
Dr. Richard B. Shepard, President
Applied Ecosystem Services, Inc. (TM)
2404 SW 22nd Street | Troutdale, OR 97060-1247 | U.S.A.
+ 1 503-667-4517 (voice) | + 1 503-667-8863 (fax) | rshepard@appl-ecosys.com http://www.appl-ecosys.com/
---------------------------(end of broadcast)---------------------------
TIP 4: Don't 'kill -9' the postmaster
Is it possible to use an array as a parameter to a pl/pgsql function. I am
running version 7.3 and don't have the time right now to upgrade.If it is
possible, how do you iterate through the array? For example:
phpVariable[0]=1;
phpVariable[1]=2;
phpVariable[2]=3;
some_pl/pgsql_function(phpVariable?)
how do you access phpVariable[2] within the function?
Thanks.
Julie
---------------------------(end of broadcast)---------------------------
TIP 2: you can get off all lists at once with the unregister command
(send "unregister YourEmailAddressHere" to ma*******@postgresql.org)
On Mon, 17 Nov 2003, Julie May wrote: Is it possible to use an array as a parameter to a pl/pgsql function. I am running version 7.3 and don't have the time right now to upgrade.If it is possible, how do you iterate through the array? For example:
CREATE or REPLACE FUNCTION foo(integer[]) RETURNS int AS
'DECLARE
a alias for $1;
index integer := 1;
total integer := 0;
BEGIN
WHILE a[index] > 0
LOOP
total := total + a[index];
index := index + 1;
END LOOP;
RETURN total;
END;
' LANGUAGE 'plpgsql';
test=> select foo('{1,2}');
foo
-----
3
(1 row)
---------------------------(end of broadcast)---------------------------
TIP 3: if posting/reading through Usenet, please send an appropriate
subscribe-nomail command to ma*******@postgresql.org so that your
message can get through to the mailing list cleanly
Thank you Ben, that worked.
----- Original Message -----
From: "Ben" <be***@silentmedia.com>
To: "Julie May" <ju***@ccorb.com>
Cc: <pg***********@postgresql.org>
Sent: Monday, November 17, 2003 3:17 PM
Subject: Re: [GENERAL] arrays as parameters to pl/pgsql functions On Mon, 17 Nov 2003, Julie May wrote:
Is it possible to use an array as a parameter to a pl/pgsql function. I
am running version 7.3 and don't have the time right now to upgrade.If it
is possible, how do you iterate through the array? For example:
CREATE or REPLACE FUNCTION foo(integer[]) RETURNS int AS 'DECLARE a alias for $1; index integer := 1; total integer := 0; BEGIN WHILE a[index] > 0 LOOP total := total + a[index]; index := index + 1; END LOOP;
RETURN total; END; ' LANGUAGE 'plpgsql'; test=> select foo('{1,2}'); foo ----- 3 (1 row) ---------------------------(end of broadcast)--------------------------- TIP 3: if posting/reading through Usenet, please send an appropriate subscribe-nomail command to ma*******@postgresql.org so that your message can get through to the mailing list cleanly
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to ma*******@postgresql.org
> Is there a tool for designing databases(ERD to data Design) and being able to generate scripts or databases from the tool.
Visio does a good job, but does not have a driver for PostgreSQL. The scripts have to be modified before executing.
I like Druid, which is open source and written in Java so it will run
on all Operating Systems:
Druid, The Database Manager http://sourceforge.net/projects/druid/
This one lets you create multiple E/R Views, and in addition to
generating SQL Code for you it will also create Java classes, complete PDF
documentation, and many other things. It has direct support for PostgreSQL,
and some others.
--
Randolf Richardson - rr@8x.ca
Inter-Corporate Computer & Network Services, Inc.
Vancouver, British Columbia, Canada http://www.8x.ca/
This message originated from within a secure, reliable,
high-performance network ... a Novell NetWare network.
> Is there a tool for designing databases(ERD to data Design) and being able to generate scripts or databases from the tool.
Visio does a good job, but does not have a driver for PostgreSQL. The scripts have to be modified before executing.
I like Druid, which is open source and written in Java so it will run
on all Operating Systems:
Druid, The Database Manager http://sourceforge.net/projects/druid/
This one lets you create multiple E/R Views, and in addition to
generating SQL Code for you it will also create Java classes, complete PDF
documentation, and many other things. It has direct support for PostgreSQL,
and some others.
--
Randolf Richardson - rr@8x.ca
Inter-Corporate Computer & Network Services, Inc.
Vancouver, British Columbia, Canada http://www.8x.ca/
This message originated from within a secure, reliable,
high-performance network ... a Novell NetWare network. This thread has been closed and replies have been disabled. Please start a new discussion. Similar topics
by: luc wastiaux |
last post by:
Hello,
my boss is looking for a tool that would enable her to draw web interfaces
easily, like visio does for other types of diagrams. What she wants
this for is , I assume, to give me an exact...
|
by: Flip |
last post by:
Is there a UML modelling tool/addin for VS2k3 that's not Visio? I am hoping
to be able to find something like Borland's Together Designer for Visual
Studio, but that is done in C#, not java! :>
...
|
by: JAC |
last post by:
Hi, all.
I'm planning to write a fairly basic diagramming
application in C# with the .Net Framework.
The look & feel, etc. is to take after Microsoft Visio,
and the program will mimick many...
|
by: Piotrek Stachowicz |
last post by:
Hi,
A bit off topic, but still... I am writing a project in c# (MS .NET).
There is this nice featrure called 'Reverse Engineer' which allows me to
import all data about my c# classes to the visio...
|
by: Ken! |
last post by:
hello
I'm using visio 2003 as my develop tool. And I'm trying to read the UML
class data from visio and do something. But I really don't know how to
export and what are the export interfaces.
...
|
by: Steve B. |
last post by:
Hi,
I used to modelize my DB with Visio for Enterprise Architect (shipped with
VS 2003) in order to generate the DB and keep nice loooking shemas.
I tried the new SQL Server 2005 and Visio for...
|
by: C |
last post by:
Hi,
I am looking for a Toll that it allow me to design my Object Model?
Anyone know of any free tool out there?
Once I have my design done will this tool generate my classes for me?
I had...
|
by: Ronchese |
last post by:
Hello.
Is there any way to integrate the Microsoft Visio and Microsoft Visual
Studio 2005 Professional? I read that this integration is supplied by VS
Team System Architect edition, but I would...
|
by: cmk128 |
last post by:
Hi
I need to create a website, the function of the web should near
microsoft visio. Please tell me what php library can let me to create
a sharp on the web, and able to drag it and put a line to...
|
by: lllomh |
last post by:
Define the method first
this.state = {
buttonBackgroundColor: 'green',
isBlinking: false, // A new status is added to identify whether the button is blinking or not
}
autoStart=()=>{
|
by: DJRhino |
last post by:
Was curious if anyone else was having this same issue or not....
I was just Up/Down graded to windows 11 and now my access combo boxes are not acting right. With win 10 I could start typing...
|
by: NeoPa |
last post by:
Hello everyone.
I find myself stuck trying to find the VBA way to get Access to create a PDF of the currently-selected (and open) object (Form or Report).
I know it can be done by selecting :...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be using a very simple database which has Form (clsForm) & Report (clsReport) classes that simply handle making the calling Form invisible until the Form, or all...
|
by: Teri B |
last post by:
Hi, I have created a sub-form Roles. In my course form the user selects the roles assigned to the course.
0ne-to-many. One course many roles.
Then I created a report based on the Course form and...
|
by: nia12 |
last post by:
Hi there,
I am very new to Access so apologies if any of this is obvious/not clear.
I am creating a data collection tool for health care employees to complete. It consists of a number of...
|
by: NeoPa |
last post by:
Introduction
For this article I'll be focusing on the Report (clsReport) class. This simply handles making the calling Form invisible until all of the Reports opened by it have been closed, when it...
|
by: isladogs |
last post by:
The next online meeting of the Access Europe User Group will be on Wednesday 6 Dec 2023 starting at 18:00 UK time (6PM UTC) and finishing at about 19:15 (7.15PM).
In this month's session, Mike...
|
by: GKJR |
last post by:
Does anyone have a recommendation to build a standalone application to replace an Access database? I have my bookkeeping software I developed in Access that I would like to make available to other...
| |