Strange reply

2004-01-10 Thread Clayburn W. Juniel, III
Original Subject: Re: connecting without a password Thanks for send us email. We've delivered your email to @cathaybk.com.tw! Reminding!! Our Email domain is changed as @cathaybk.com.tw What does this mean. Best wishes, -Clay --- Clayburn W. Juniel, III Effective Software Solutions ht

Re: sql problem

2002-10-23 Thread Clayburn W. Juniel, III
This error usually means the query was written correctly. -- Clayburn W. Juniel, III Phone: (602) 326-7707 Email: [EMAIL PROTECTED] http://EffectiveSoftwareSolutions.com -- - Before posting, please check: http://www.mysql.com/ma

Re: Unknown error code : 1053

2002-10-15 Thread Clayburn W. Juniel, III
; occur on > one of my update query. > The error code is 1053. Does anyone know what it means? > This is what perror returns: > Error code 1053: Error 1053 occurred. > Any help would be greatly appreciated > Cheers Try > perror 1053 and see what it says -- Claybu

Re: How to see whether a field is contained in a string (reverse of LIKE)

2002-10-14 Thread Clayburn W. Juniel, III
For each field you could do SELECT field_name from your_table where SECTOR LIKE '%field_name%' . You don't care what the result is. Only that there is a result with at least one row of data. -- Clayburn W. Juniel, III Phone: (602) 326

Re: mysql OSX 10.2

2002-10-12 Thread Clayburn W. Juniel, III
Marc Liyanage. If that doesn't work, you can get a source distribution and compile it your self. When I did that I got a few errors during make and make install. I set the -i flag to ignore errors and it compiled and ran OK. -- Clayburn W. Juniel, III Phone: (602) 326-77

Re: LOAD DATA INFILE problem

2002-10-12 Thread Clayburn W. Juniel, III
nix systems the mysql user needs file privileges to file to be loaded. It's probably simplest to have the file located on a local disk (not network shared) with privileges for all to read. -- Clayburn W. Juniel, III Phone: (602) 326-7707 Email: [EMAIL PROTECTED] http://Effecti

Re: Urgent Help! Importing Data from Text File...

2002-10-10 Thread Clayburn W. Juniel, III
not getting the whole records in the > table > from the text file. > > Your help will be highly appreciated... > With Best Regards... Create a table with all the restrictions removed. No "Key", or &

Re: JDBC Server Connection

2002-10-10 Thread Clayburn W. Juniel, III
of connecting to an MySQL database if you just leave off the database name you should be able to connect. -- Clayburn W. Juniel, III Phone: (602) 326-7707 Email: [EMAIL PROTECTED] http://EffectiveSoftwareSolutions.com -- -

Fwd: Create table if not exists from mysqldump?

2002-10-04 Thread Clayburn W. Juniel, III
Begin forwarded message: From: "Clayburn W. Juniel, III" <[EMAIL PROTECTED]> Date: Fri Oct 4, 2002 10:24:06 America/Phoenix To: "Clayburn W. Juniel, III" <[EMAIL PROTECTED]> Subject: Re: Create table if not exists from mysqldump? On Friday, Oct 4, 2002, at 0

Re: Create table if not exists from mysqldump?

2002-10-04 Thread Clayburn W. Juniel, III
mported into an existing > database it > does not write over tables with the same name. Does anyone know if > this is > possible with mysqldump and if so what option achieves this? Thanks. add the option -n or --no-create-db. This will add IF NOT CREATE to the sql. -- Clayburn W. Juniel

Re: Please Help!

2002-10-01 Thread Clayburn W. Juniel, III
passwords. I can't even enter the root password. I'm > nearly giving up. It sounds like the server isn't running. You need to start it with cd /usr/local ./bin/safe_mysqld --user=mysql & You may need to start the server as root. -- Claybu

Re: install mysql on osx 10.2

2002-10-01 Thread Clayburn W. Juniel, III
OS version 10.2 from http://www.entropy.ch/software/macosx/mysql/ -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707Mobile: (602)326-7707 Email: [EMAIL PROTECTED] http://EffectiveSoftwareSolutions.com -- -

Re: FileMaker Pro Schema Export?

2002-10-01 Thread Clayburn W. Juniel, III
of > story. If you export a FileMaker database using 'Merge' you get a delimited text file with the first row being the column names. A program could be created to use this first row as column names to create a table. -- Clayburn W. Juniel, III -- Effective Software Solutions Phone:

Re: select problem with "not equal" syntax

2002-10-01 Thread Clayburn W. Juniel, III
nt. > > With query... > > SELECT hl7incom.id > FROM hl7incom, pid_segment > WHERE hl7incom.msg LIKE '%PID%' > AND pid_segment.id != hl7incom.id > GROUP BY hl7incom.id; Did you try using '<>' instead of '!=' -- Clayburn W.

Re: Creating/droping database using mySQL JDBC driver

2002-09-30 Thread Clayburn W. Juniel, III
On Monday, September 30, 2002, at 03:53 24h, Slava Imeshev wrote: > Hello All, > > Could anyone help me with this issue? Is it > possible to create/drop database using mySQL > JDBC driver? > Yes. -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-77

Re: Setting the password for root user in mysql

2002-09-30 Thread Clayburn W. Juniel, III
This is > done with: /usr/local/bin/mysqladmin -u root -p password 'new-password' > /usr/local/bin/mysqladmin -u root -h localhost -p password > 'new-password' try: /usr/local/bin/mysqladmin -u root password 'new-password' with the single quotes. -- Claybur

Re: [NEWBIE] Master Account

2002-09-30 Thread Clayburn W. Juniel, III
running you first need to give "root" a password by typing: mysqladmin -u root password 'password' Including the single quotes. Then to log in as root: mysql -uroot -p -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707

Re: Setting Permission For Column Level Only

2002-09-29 Thread Clayburn W. Juniel, III
vilege. I > am unable to give a column level privilege. Grant Select (colum_name1), Select (Column_name2) on database_name.table_name to whoever@"%" identified by 'password' -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707Mobi

Re: Setting Permission For Column Level Only

2002-09-29 Thread Clayburn W. Juniel, III
a row in the columns_priv table, that will do. You have to enter data into the tables_priv table, but NOT the db table. I believe all the fields in the tables_priv table need to be filled except Table_priv. -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707

Re: one step up ...

2002-09-27 Thread Clayburn W. Juniel, III
his : > logging into mysql with using : > mysql -u root -p > then I get : > mysql > > now I'm using "use sample_db" > and can do some learnings, but how can I get back before "use > sample_db", so I > can do a "show databases;" and see th

Re: mysql instla

2002-09-27 Thread Clayburn W. Juniel, III
. Try: safe_mysqld -u=mysql & or safe_mysqld --user=mysql & -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707Mobile: (602)326-7707 Email: [EMAIL PROTECTED] http://EffectiveSoftwareSolutions.com -- ---

Re: rename database

2002-09-27 Thread Clayburn W. Juniel, III
ble. You could then drop the old database. -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707Mobile: (602)326-7707 Email: [EMAIL PROTECTED] http://EffectiveSoftwareSolutions.com -- - Before

Re: Need help with simple problem... I think

2002-09-27 Thread Clayburn W. Juniel, III
orary Table temp_table Select * From t1 Where ID = 'x'; Update temp_table Set ActivationDate = Now() where ID = 'x'; Insert into ti select * from temp_table where ID = 'x'; When I tried this a got a table already exist error on the first line, but the table

Re: Not Null

2002-09-27 Thread Clayburn W. Juniel, III
ert NULL into NOT NULL column, '' > or 0 will be inserted: >http://www.mysql.com/doc/en/Bugs.html > > If you don't want to use default values, configure MySQL with > -DDONT_USE_DEFAULT_FIELDS Thanks for the information. I read also that MySQL AB says you should

Not Null

2002-09-25 Thread Clayburn W. Juniel, III
? -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707Mobile: (602)326-7707 Email: [EMAIL PROTECTED] http://EffectiveSoftwareSolutions.com -- - Before posting, please check: http://www.mysql.com

Re: Connecting to remote MySQL server

2002-09-20 Thread Clayburn W. Juniel, III
t;> "mysql -h 192.168.0.230 -u username -p" is correct. But when you created the grant for this user, you needed to list the host as 192.168.0.230 or I think "%" might have worked. -- Clayburn W. Juniel, III -- Effective So

Re: Unable to execute mysql on OS X

2002-09-20 Thread Clayburn W. Juniel, III
ntropy.ch/software/macosx/mysql/. Download the correct one (pre OS 10.2 or after OS 10.2). And follow the instructions. It also seems you need to start the server as root. -- Clayburn W. Juniel, III -- Effective Software Solutions Phone: (602) 326-7707Mobile:

Re: /usr/local/mysql/libexec/mysqld doesn't exist in installation

2002-09-19 Thread Clayburn W. Juniel, III
On Thursday, September 19, 2002, at 07:44 AM, Clayburn W. Juniel, III wrote: > > On Thursday, September 19, 2002, at 03:19 AM, [EMAIL PROTECTED] wrote: > >> linux:/usr/local/mysql # ./bin/mysqld_safe >> The file /usr/local/mysql/libexec/mysqld doesn't exist >> o

Re: mysql on OS X >>>PROBLEM!

2002-09-12 Thread Clayburn W. Juniel, III
On Thursday, September 12, 2002, at 09:58 PM, Clayburn W. Juniel, III wrote: > > On Thursday, September 12, 2002, at 05:03 AM, philipp ringli wrote: > >> hi all, >> >> i am running OS X 10.2 and >> this version of mysql: >> >> mysql> status >

Re: mysql on OS X >>>PROBLEM!

2002-09-12 Thread Clayburn W. Juniel, III
his happening? > > please advise, > > phil > I assume you started with: whoever% mysql -uroot -p Enter password: xxx mysql> You need to add users like this: mysql> grant create, delete, drop, insert, select, update on mysql> Database_Name to someone@"%" i