Re: Difference between internal data dictionary and table definition file

2012-03-27 Thread Johan De Meersman
- Original Message - > From: "Kinaan Khan Sherwani" > > that MySQL server keeps data dictionary information in .frm files > which it stores in the database directories, whereas InnoDB also stores > the information into its own data dictionary inside the table sp

Re: Creating a Data Dictionary

2010-07-12 Thread Michael Dykman
A data dictionary, as the term is generally used, is what is contained in INFORMATION_SCHEMA. It is meta data describing the types and names and structure of the data within a given domain. Python's concept of a dictionary is what other language call a hash (perl), an associative array (aw

RE: Creating a Data Dictionary

2010-07-12 Thread Jay Blanchard
[snip] Perhaps I have a conflict of terms here, but my googling "mysql data dictionary" turned up material that didn't seem to correspond with my problem. In python I can create dictionaries: my_dict = {'1': 'one', '2': 'two'} Now, I would li

Re: Creating a Data Dictionary

2010-07-12 Thread Michael Dykman
No such thing in SQL On Mon, Jul 12, 2010 at 10:39 AM, Victor Subervi wrote: > Hi; > Perhaps I have a conflict of terms here, but my googling "mysql data > dictionary" turned up material that didn't seem to correspond with my > problem. In python I can create dictionar

Creating a Data Dictionary

2010-07-12 Thread Victor Subervi
Hi; Perhaps I have a conflict of terms here, but my googling "mysql data dictionary" turned up material that didn't seem to correspond with my problem. In python I can create dictionaries: my_dict = {'1': 'one', '2': 'two'} Now, I would li

Re. Cannot find table from the internal data dictionary of InnoDB though the .frm

2009-03-12 Thread Krish Compusoft Services Pvt. Ltd
table not shown. I have checked the log file then following error shows. I have tried to recover using .frm file but it doesn't work. 040101 1:11:52040101 1:11:52 [ERROR] Cannot find table atc/circle from the internal data dictionary of InnoDB though the .frm file for the table e

Data Dictionary

2008-07-15 Thread Dan
Can anyone recommend a good tool to generate a PDF or HTML Data Dictonary from a MySql 5 database? -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: Data dictionary for MySQL

2006-09-07 Thread Steve Edberg
At 11:29 AM +0530 9/7/06, Ravi Kumar. wrote: Hi All, I am looking for a data dictionary for MySQL. It should be free and ideally, developed in php. And such that it stores the data dictionary in MySQL itself. Any suggestions / pointers? If you're using MySQL5, take a look a

Data dictionary for MySQL

2006-09-06 Thread Ravi Kumar.
Hi All, I am looking for a data dictionary for MySQL. It should be free and ideally, developed in php. And such that it stores the data dictionary in MySQL itself. Any suggestions / pointers? Regards, Ravi.

Re: Dictionary

2006-02-01 Thread mysql
Well I have just done a google.co.uk search for english dictionary downloadable and got the following results: Web Results 1 - 10 of about 1,290,000 for english dictionary downloadable. They may not be in the correct format to import directly. But I'm sure it is possible to write a s

Re: Dictionary

2006-02-01 Thread Dan Baker
What you are looking for is called a Word List. I would search for something like the following: "word list" spellcheck DanB "Scott Hamm" <[EMAIL PROTECTED]> wrote in message news:[EMAIL PROTECTED] I've been trying to google to no avail for English dictionary (

Re: Dictionary

2006-02-01 Thread Octavian Rasnita
Try searching on www.dict.org Teddy - Original Message - From: "Peter of Pedsters Planet" <[EMAIL PROTECTED]> To: "Mysql" Sent: Wednesday, February 01, 2006 8:27 PM Subject: Re: Dictionary I'd like to know too if posible :) On 01/02/06, Scott Hamm &l

RE: Dictionary

2006-02-01 Thread Dana Diederich
Check http://dict.org/ Cheers, -Dana -Original Message- From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] Sent: Wednesday, February 01, 2006 12:39 PM To: Peter of Pedsters Planet Cc: Mysql Subject: Re: Dictionary Peter of Pedsters Planet <[EMAIL PROTECTED]> wrote on 02/01/2006

RE: Dictionary

2006-02-01 Thread ISC Edwin Cruz
PROTECTED] Enviado el: Miércoles, 01 de Febrero de 2006 11:01 a.m. Para: 'Mysql ' Asunto: Dictionary I've been trying to google to no avail for English dictionary (with definitions) in any format that I can download and import into MySQL. Do anyone know where I can find it? Thanks in

Re: Dictionary

2006-02-01 Thread SGreen
Peter of Pedsters Planet <[EMAIL PROTECTED]> wrote on 02/01/2006 01:27:45 PM: > I'd like to know too if posible :) > > On 01/02/06, Scott Hamm <[EMAIL PROTECTED]> wrote: > > I've been trying to google to no avail for English dictionary (with > > def

Re: Dictionary

2006-02-01 Thread Peter of Pedsters Planet
I'd like to know too if posible :) On 01/02/06, Scott Hamm <[EMAIL PROTECTED]> wrote: > I've been trying to google to no avail for English dictionary (with > definitions) in any format that I can download and import into MySQL. > Do anyone know where I can find it? -- M

Dictionary

2006-02-01 Thread Scott Hamm
I've been trying to google to no avail for English dictionary (with definitions) in any format that I can download and import into MySQL. Do anyone know where I can find it? Thanks in advance, Scott -- Power to people, Linux is here. -- MySQL General Mailing List For list archives:

Re: Getting the data dictionary in MySQL 4.1.13

2005-08-10 Thread Gleb Paharenko
y development. At that time I used the > following SQL query to load the whole data dictionary into my local memory > to reduce load on DB as I am using the prepared statements API, that > requires column types as one of the inputs. > > select Table_Name,column_name,Data_Type from informati

Getting the data dictionary in MySQL 4.1.13

2005-08-10 Thread Sujay Koduri
Hi, Initially I used MySQL 5.0.4 for all my development. At that time I used the following SQL query to load the whole data dictionary into my local memory to reduce load on DB as I am using the prepared statements API, that requires column types as one of the inputs. select Table_Name

Re: Data Dictionary

2005-01-06 Thread SGreen
As Rhino said, the INFORMATION_SCHEMA views (data dictionary) are coming in v5.x (so they are close but not here yet). Until then a more "native" alternative is to parse the results of either "SHOW CREATE TABLE tablename" or "SHOW COLUMNS FROM tablename LIKE 'colu

Re: Data Dictionary

2005-01-06 Thread Rhino
The only way I know to access anything resembling a "data dictionary" in MySQL V4.* is via the Java MetaData interfaces. I use these occasionally in my programs. In your case, you want the getColumnDisplaySize() method in the ResultSetMetaData Interface. This code fragment demons

Data Dictionary

2005-01-06 Thread Ben Edwards
how do I access the Data Dictionary through SQL? What I want to do is loookup the length of a varchar for validation? Ben -- Ben Edwards - Poole, UK, England WARNING:This email contained partisan views - dont ever accuse me of using the veneer of objectivity If you have a problem emailing me

RE: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-12 Thread SciBit MySQL Team
> -w, --where=nameDump only selected records; QUOTES mandatory! > > :) The more options the merrier for MySQL and the end-users :) -- MySQL General Mailing List For list archives: http://lists.mysql.com/mysql To unsubscribe:http://lists.mysql.com/[EMAIL PROTECTED]

Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-12 Thread Egor Egorov
"SciBit MySQL Team" <[EMAIL PROTECTED]> wrote: > select * from accounts; -- as an example > > but because you can customize the source sql script for MyRun, you can go like: > > select * from accounts where AccountDate>YEAR(CURDATE()); -- > > i.e. limit the inserts you going to get to that whic

Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-12 Thread SciBit MySQL Team
> Great, MyCon produces "SQL statements ready to recreate just your schema and/or all > data as well", now did I miss something, or does MyCon actually write the SQL one > needs to create and populate a set of system tables for the schema? >   > PB > . Nope Peter, you didn't miss a beat ;) Jus

RE: Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-11 Thread SciBit MySQL Team
> mysqldump --no-data --all-databases > > > Eamon Daly Yeap Eamon, as mentioned MyRun is not the only utility on earth with the functionality. The difference between mysqldump and MyRun is that while MyRun includes all the mysqldump

Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-11 Thread Eamon Daly
" <[EMAIL PROTECTED]> To: <[EMAIL PROTECTED]> Sent: Wednesday, August 11, 2004 4:34 PM Subject: RE: Re: [OT] PostgreSQL / MySQL Data Dictionary > > In MySQL, by parsing the output of SHOW CREATE TABLE. > > > > It would be a boon if someone were to write a utility,

RE: Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-11 Thread SciBit MySQL Team
> In MySQL, by parsing the output of SHOW CREATE TABLE. > > It would be a boon if someone were to write a utility, in an OS-independent > language, which does that parsing for all tables in a MySQL database and > returns SQL output that's suitable for creating a set of system tables. > Obviously

Re: MySQL Data Dictionary (INFORMATION_SCHEMA)

2004-08-11 Thread Josh Trutwin
On Wed, 11 Aug 2004 12:09:34 -0700 Jim Winstead <[EMAIL PROTECTED]> wrote: > On Wed, Aug 11, 2004 at 07:03:18PM +0200, Jochem van Dieten wrote: > > MySQL strives to ful SQL standard compliance (ISO/IEC 9075), so an > > INFORMATION_SCHEMA must be planned for someday. However, that day > > does not

Re: MySQL Data Dictionary (INFORMATION_SCHEMA)

2004-08-11 Thread Jochem van Dieten
On Wed, 11 Aug 2004 12:09:34 -0700, Jim Winstead wrote: >On Wed, Aug 11, 2004 at 07:03:18PM +0200, Jochem van Dieten wrote: >> MySQL strives to ful SQL standard compliance (ISO/IEC 9075), so an >> INFORMATION_SCHEMA must be planned for someday. However, that day does >> not appear to be in the near

MySQL Data Dictionary (INFORMATION_SCHEMA)

2004-08-11 Thread Jim Winstead
On Wed, Aug 11, 2004 at 07:03:18PM +0200, Jochem van Dieten wrote: > MySQL strives to ful SQL standard compliance (ISO/IEC 9075), so an > INFORMATION_SCHEMA must be planned for someday. However, that day does > not appear to be in the near future. INFORMATION_SCHEMA will be supported in MySQL 5.0.

Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-11 Thread Peter Brawley
> SHOW TABLES does not make sense. How are you going to join the > output of SHOW TABLES against the output of SHOW COLUMNS and > SHOW INDEXES? In MySQL, by parsing the output of SHOW CREATE TABLE. It would be a boon if someone were to write a utility, in an OS-independent language, which does th

Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-11 Thread Jochem van Dieten
NDEXES? >> >> SELECT * FROM INFORMATION_SCHEMA.TABLES makes sense. >> >> >> And as for easy remembering: I prefer to remember just one standard, >> instead of the idiosyncracies of each product. > > Yes, a queryable (sp?) set of dictionary tables/views would b

Re: [OT] PostgreSQL / MySQL Data Dictionary

2004-08-11 Thread Josh Trutwin
sense. > > > And as for easy remembering: I prefer to remember just one standard, > instead of the idiosyncracies of each product. Yes, a queryable (sp?) set of dictionary tables/views would be nice for doing this. The MySQL set of "SHOW" commands is pretty painful for any

RE: query mysql data dictionary

2004-04-23 Thread Dathan Vance Pattishall
SHOW KEYS FROM > -Original Message- > From: sbv chris [mailto:[EMAIL PROTECTED] > Sent: Thursday, April 22, 2004 7:26 AM > To: [EMAIL PROTECTED] > Subject: query mysql data dictionary > > Hi, I'm trying to find a way to find the primary keys in a table and fin

query mysql data dictionary

2004-04-23 Thread sbv chris
Hi, I'm trying to find a way to find the primary keys in a table and find constraints on a table by sql. I would like to later issue these sql statements through jdbc. hows this done in mysql? Regards, Sunil. _ Lose those love han

supersmack question regarding dictionary

2003-09-04 Thread Adam
If I wanted to make a dictionary entry that would just provide a sequential # starting at X and every time its used, it adds one... Is this possible? How? I do not quite understand the docs, but it seems like unique and template has this ability. Thanks, Adam

Re: translation dictionary

2003-03-14 Thread Paul DuBois
At 10:13 -0500 3/14/03, Keith C. Ivey wrote: On 14 Mar 2003, at 0:28, felix t wrote: I would like to ask for some ideas on how to build such a dictionary given that I can not use more than one set of characters in mysql server. ( the russian words need on set of characters , the french ones

Re: translation dictionary

2003-03-14 Thread Keith C. Ivey
On 14 Mar 2003, at 0:28, felix t wrote: > I would like to ask for some ideas on how to build > such a dictionary given that I can not use more than > one set of characters in mysql server. ( the russian > words need on set of characters , the french ones > another ). Presumab

Re: translation dictionary

2003-03-14 Thread Csongor Fagyal
You can try UTF-8. - Cs. I guess you'd have to use MySQL 4.1 to assign different character sets to different columns. Should be straight-forward at time of table creation. David *** Hello, I'm interested in building a translation dictionar

Re: translation dictionary

2003-03-14 Thread dpgirago
I guess you'd have to use MySQL 4.1 to assign different character sets to different columns. Should be straight-forward at time of table creation. David *** Hello, I'm interested in building a translation dictionary: russian - french. M

translation dictionary

2003-03-13 Thread felix t
Hello, I'm interested in building a translation dictionary: russian - french. My database would have only one table which contains in each entry a the word and its translation. I intend to put such a dictionary on a web page. I would like to ask for some ideas on how to build such a dicti

Flexible Data Dictionary

2003-03-06 Thread trlists
l the screen characteristics simply by modifying the metadata. With some additional work it could be used to generate ALTER TABLE code as well. This is a classic data dictionary arrangement (with the screen info added) and I'm curious if anyone has either done it before, or knows of a

Re: Data dictionary as a table

2002-01-06 Thread DL Neil
Erv, > Does MySQL have anything functionally equivalent to the data dictionary > views of Oracle? I am thinking particularly of retrieving, via a SQL > SELECT statement, a list of all my tables, or a list of all the columns of > a particular table along with the columns' attri

Data dictionary as a table

2002-01-05 Thread Erv Young
Does MySQL have anything functionally equivalent to the data dictionary views of Oracle? I am thinking particularly of retrieving, via a SQL SELECT statement, a list of all my tables, or a list of all the columns of a particular table along with the columns' attributes. TIA.

Re: Dictionary

2001-11-15 Thread Colin Faber
Hi, load your dict file with LOAD DATA INFILE very easy; pretty quick ;-) If you don't want to mess with that, I just dumped my dictionary database. Here is the link to where you can download that dump file: http://brimstone.fpsn.net/~cfaber/mysql/dict.sql.gz Michael wrote: >

Dictionary

2001-11-15 Thread Michael
Does anyone know where to get a dictionary that would be for sql. I was attempting to write up a few scripts for password stuff and thought it would be easy if someone knew where to obtain a dictionary in sql format. Any ideas would be helpful. Thanks

data model, tips for online dictionary

2001-08-23 Thread David Mintz
speak. Is there anyone out there who has done an online dictionary or glossary and can share some tips about the data model and techniques? I know this wheel has been invented before (yes I checked the archives; someone mentioned he's done one but that's all he says). At the very crude