473,473 Members | 1,853 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

Visio Like Tool....

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

Nov 12 '05 #1
9 5516
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

Nov 12 '05 #2
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

Nov 12 '05 #3
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

Nov 12 '05 #4
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

Nov 12 '05 #5
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)

Nov 12 '05 #6
Ben
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

Nov 12 '05 #7
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

Nov 12 '05 #8
> 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.

Nov 12 '05 #9
> 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.

Nov 12 '05 #10

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

4
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...
5
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! :> ...
8
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...
3
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...
0
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. ...
1
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...
1
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...
1
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...
5
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...
0
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers,...
1
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
0
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and...
0
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The...
0
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated ...
1
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
0
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.