RE: WG: ABUSE? , myisampack , sql , admin [T2002091901XL]

2002-09-19 Thread Chugh Shalini
whenever I post any mail to mysql list, I too received these mails > -Original Message- > From: Paul DuBois [SMTP:[EMAIL PROTECTED]] > Sent: Friday, September 20, 2002 6:59 AM > To: Joel Rees; Franz, Fa. PostDirekt MA > Cc: [EMAIL PROTECTED] > Subject: Re: WG: ABUSE? , myisampack

RE: user defined functions under windows

2002-09-18 Thread Chugh Shalini
I made UDFs in vC++ and loaded them on windows binary version of mysql.. They are working perfectly fine .I think you should specify these following arguments while defining a function e.g. double func_test(UDF_INIT *initid, UDF_ARGS *args, char *is_null, char *error) { re

RE: Server shutdown

2002-09-18 Thread Chugh Shalini
Have you specified any password for the users--- root or shravan ? > -Original Message- > From: Shravan Durvasula [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, September 19, 2002 12:47 AM > To: MySQL HELP > Subject: Server shutdown > > Hi all, > > I am completely new to MySQL. I ins

RE: Problem with installation of mysql 3.23.52 on solaris 9

2002-09-12 Thread Chugh Shalini
Which C compiler version are you using? > -Original Message- > From: Bhanu Prasad Rekapalli [SMTP:[EMAIL PROTECTED]] > Sent: Friday, September 13, 2002 2:23 AM > To: [EMAIL PROTECTED] > Subject: Problem with installation of mysql 3.23.52 on solaris 9 > > Hi, > The error is as foll

error while make of 3.23.52

2002-09-10 Thread Chugh Shalini
Hi All! mysql, sql, query > I am trying to install mysql-3.23.52 . I configured with following command > and then had run make. Make gives the following errors. Please help > > ./configure --with-low-memory --with-innodb > --with-mysqld-ldflags=-rdynamic > > > errors during make > > s

problem while configuring innodb option

2002-09-09 Thread Chugh Shalini
Hi! I am trying to install mysql 3.23.52 from source distribution. I have given this command shell> ./configure --prefix=/usr/local/mysql --with-innodb after sometimes it gives the following error CONFIGURING FOR INNODB NOTICE: I have to make the Innobase directory: /opt/siemobile/shris

downloadable source distribution package of Mysql for solaris

2002-09-06 Thread Chugh Shalini
query, mysql, sql A very basic question as I have no other options left but to ask. I need to download source distribution package of mysqlmax version 3.23.52 for solaris 2.8 but on the www.mysql.com site I always find the binary package version for mysqlmax for solaris. Please let me

RE: link under Win32 for udf

2002-09-06 Thread Chugh Shalini
here instructions how to use udf_example.cc on VC++. Assuming that the user has VC++ 6.0, the Windows MySQL source and running a MySQL server with the same version. - Open the mysqld.dsw workspace. - Add New project to the workspace - Project name: udf_example - Select Win32 Dynamic-Link Librar

RE: User defined functions

2002-09-05 Thread Chugh Shalini
the mysql again from the source distributed version and configure mysqld with -rdynamic ?? > -Original Message- > From: Lenz Grimmer [SMTP:[EMAIL PROTECTED]] > Sent: Friday, September 06, 2002 12:11 PM > To: Chugh Shalini > Cc: [EMAIL PROTECTED] > Subject

User defined functions

2002-09-05 Thread Chugh Shalini
Can my user defined functions work well if I have installed mysql from the binary source?? Filter sql, query, mysql - Before posting, please check: http://www.mysql.com/manual.php (the manual) http://lists.mysql.com/

Probem creating User Defined Functions

2002-09-05 Thread Chugh Shalini
Hi All! I have created a user defined function "exampleFun.c" and have complied it to "exampleFunc.so" code for compiling exampleFunc.c to exampleFunc.so is gcc -I/usr/local/mysql/include -L/usr/local/mysql/lib/ \ -c -fpic exampleFunc..c ld -b -dy -G -lmysqlclient -lc exampleFu

RE: sysdate or curdate as default date in mysql

2002-09-02 Thread Chugh Shalini
: Mike Hillyer [SMTP:[EMAIL PROTECTED]] > Sent: Monday, September 02, 2002 6:54 PM > To: Chugh Shalini; [EMAIL PROTECTED] > Subject: RE: sysdate or curdate as default date in mysql > > If what you are looking for is the current date to be used as date of > creation, then remain unc

sysdate or curdate as default date in mysql

2002-09-02 Thread Chugh Shalini
Dear All! Can we define sysdate or curdate as default date for a column of datatype 'date' while creating a table? Regards Sql, mysql, query - Before posting, please check: http://www.mysql.com/manual.php (the man

RE: delete rules in mysql

2002-09-01 Thread Chugh Shalini
Thankx Victoria, Now the things are working perfectly fine.. query, mysql > -Original Message- > From: Victoria Reznichenko [SMTP:[EMAIL PROTECTED]] > Sent: Thursday, August 29, 2002 7:08 PM > To: [EMAIL PROTECTED] > Subject: Re: delete rules in mysql > > Chugh, > Thursday, Augus

delete rules in mysql

2002-08-29 Thread Chugh Shalini
Dear All! Can we use delete rules such as delete on cascade in MySQL or I will have ti handle this on the client side? Regards sql, mysql, query - Before posting, please check: http:

Can we invoke user defined function made in java in MySQL

2002-08-22 Thread Chugh Shalini
Greetings! MySql documents specifies user defined function made in .dll/.so to be invoked in MySQL. Is there a way in which a function made in java be invoked in MySQL. Regards - Before posting, p

transferring the data from Oracle to MySQL

2002-08-13 Thread Chugh Shalini
We are in the process of transferring our databse from Oracle to MYSQL. Oracle has some triggers to insert into the table on some events. How can we handle this dynamic insertion of triggers in MYSQL. Also what is the alternative for check constraint of Oracle in MYSQL ---