ALT Linux Community general discussions
 help / color / mirror / Atom feed
* [mdk-re] Visual MySQL structure
@ 2001-07-12 15:59 Vyt
  2001-07-12 16:05 ` Mikhail Nikitin
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Vyt @ 2001-07-12 15:59 UTC (permalink / raw)
  To: Mandrake-Russian

Hello, All

Посоветуйте, пожалуйста, есть в природе средство для визуализации
связей данных в MySQL ? 
Что-нибудь вроде "схемы данных" из ms access?
Или в какой программе это лучше рисовать самому?

-- 
Regards, Vyt
mailto:vyt@vzljot.ru



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [mdk-re] Visual MySQL structure
  2001-07-12 15:59 [mdk-re] Visual MySQL structure Vyt
@ 2001-07-12 16:05 ` Mikhail Nikitin
  2001-07-12 16:30   ` Vyt
  2001-07-12 18:08 ` Alexandr Zhegallo
  2001-07-14  0:54 ` Michael Shigorin
  2 siblings, 1 reply; 5+ messages in thread
From: Mikhail Nikitin @ 2001-07-12 16:05 UTC (permalink / raw)
  To: mandrake-russian

> Посоветуйте, пожалуйста, есть в природе средство для визуализации
> связей данных в MySQL ?
> Что-нибудь вроде "схемы данных" из ms access?
> Или в какой программе это лучше рисовать самому?

PowerDesigner / Win 32, под Linux были какие-то беты RationalRose
но я не знаю работает ли там БД....

А вообще free таких систем нет или они жутко кривые.




^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [mdk-re] Visual MySQL structure
  2001-07-12 16:05 ` Mikhail Nikitin
@ 2001-07-12 16:30   ` Vyt
  0 siblings, 0 replies; 5+ messages in thread
From: Vyt @ 2001-07-12 16:30 UTC (permalink / raw)
  To: mandrake-russian

On Thu, 12 Jul 2001 16:13:53 +0400
"Mikhail Nikitin" <inform@uslugionline.ru> wrote:

> > Посоветуйте, пожалуйста, есть в природе средство для
> > визуализации
> > связей данных в MySQL ?
> > Что-нибудь вроде "схемы данных" из ms access?
> > Или в какой программе это лучше рисовать самому?
> 
> PowerDesigner / Win 32, под Linux были какие-то беты

Спасибо, посмотрю.

> RationalRose но я не знаю работает ли там БД....

Не работает за отсутствием :(

<skipped>

-- 
Regards, Vyt
mailto:vyt@vzljot.ru



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [mdk-re] Visual MySQL structure
  2001-07-12 15:59 [mdk-re] Visual MySQL structure Vyt
  2001-07-12 16:05 ` Mikhail Nikitin
@ 2001-07-12 18:08 ` Alexandr Zhegallo
  2001-07-14  0:54 ` Michael Shigorin
  2 siblings, 0 replies; 5+ messages in thread
From: Alexandr Zhegallo @ 2001-07-12 18:08 UTC (permalink / raw)
  To: mandrake-russian

> Hello, All
>
> Посоветуйте, пожалуйста, есть в природе средство для визуализации
> связей данных в MySQL ?
> Что-нибудь вроде "схемы данных" из ms access?
> Или в какой программе это лучше рисовать самому?
Я как-то пробовал рисовать структуру  базы - таблицы и связи в dia . 
Вобщем, первый вариант нарисовал ... а саму базу сделать руки не дошли.



^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [mdk-re] Visual MySQL structure
  2001-07-12 15:59 [mdk-re] Visual MySQL structure Vyt
  2001-07-12 16:05 ` Mikhail Nikitin
  2001-07-12 18:08 ` Alexandr Zhegallo
@ 2001-07-14  0:54 ` Michael Shigorin
  2 siblings, 0 replies; 5+ messages in thread
From: Michael Shigorin @ 2001-07-14  0:54 UTC (permalink / raw)
  To: Mandrake-Russian

[-- Attachment #1: Type: TEXT/PLAIN, Size: 628 bytes --]

On Thu, 12 Jul 2001, Vyt wrote:

> Посоветуйте, пожалуйста, есть в природе средство для визуализации
> связей данных в MySQL ?
> Или в какой программе это лучше рисовать самому?
Не скажу за часть *SQL, но если можно сами связи вытянуть и
скормить graphviz (см. аттач для примера), то я очень сомневаюсь,
что какая угодно приблуда переплюнет итоговый граф по качеству...

А graphviz берется на research.att.com и вроде в Сизиф вошел.

-- 
WBR, Michael Shigorin, webmaster of www.chem.univ.kiev.ua
>Home Page:  http://visa.chem.univ.kiev.ua/~mike/  ICQ: 113344029
>Brainbench: http://www.brainbench.com/transcript.jsp?pid=2434729

[-- Attachment #2: dot -Tps -o file.ps file --]
[-- Type: TEXT/PLAIN, Size: 948 bytes --]

digraph nav {
  size = "7.5, 10"; 
  graph [concentrate=true,ordering=out];
  node [fontsize=14];
  node [width=.5,height=.2];
  node [shape=plaintext];
  /* edge [dir=none]; */
  "/abit"; "/about"; "/depts"; "/resources"; "/tree";
  library -> {
    chapters;
    programme
  }
  edge [style=invis];
  "/" -> { "/about"; "/abit" };
  edge [style=dotted,dir=none];
  "/" -> "/depts" [weight=100];
  edge [style=invis,dir=forward];
  "/" -> { "/resources"; "/tree" };
  "/" [shape=box];
  edge [style=""];
  library -> {
    "/";
    "/depts";
    "/about";
    "/abit"; 
    "/resources";
    "/tree";
    people
    organics;
  }
  library [shape=ellipse];
  edge [style=dotted,dir=none];
  "/depts" -> organics;
   organics -> library;
  { rank=same
    "/about";
    "/abit"; 
    "/depts";
    "/resources";
    "/tree" 
  }
  { rank=same
    library;
    people;
  }
  { rank=min
    "/"
  }
}

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2001-07-14  0:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2001-07-12 15:59 [mdk-re] Visual MySQL structure Vyt
2001-07-12 16:05 ` Mikhail Nikitin
2001-07-12 16:30   ` Vyt
2001-07-12 18:08 ` Alexandr Zhegallo
2001-07-14  0:54 ` Michael Shigorin

ALT Linux Community general discussions

This inbox may be cloned and mirrored by anyone:

	git clone --mirror http://lore.altlinux.org/community/0 community/git/0.git

	# If you have public-inbox 1.1+ installed, you may
	# initialize and index your mirror using the following commands:
	public-inbox-init -V2 community community/ http://lore.altlinux.org/community \
		mandrake-russian@linuxteam.iplabs.ru community@lists.altlinux.org community@lists.altlinux.ru community@lists.altlinux.com
	public-inbox-index community

Example config snippet for mirrors.
Newsgroup available over NNTP:
	nntp://lore.altlinux.org/org.altlinux.lists.community


AGPL code for this site: git clone https://public-inbox.org/public-inbox.git