Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

ERROR 1436 & ERROR 1062

Status
Not open for further replies.

mnaseersj

Programmer
May 13, 2012
1
GB
Hi All,

I was trying to import Sakilla database and ran into some problem and would be grateful if someone could help me out please.

I ran the following command successfully :

Code:
/usr/local/zend/mysql/bin/mysql -u root -p < sakila-schema.sql

but When I ran this command :

Code:
/usr/local/zend/mysql/bin/mysql -u root -p < sakila-data.sql

I got an error after typing my password :

ERROR 1436 (HY000) at line 81: Thread stack overrun: 5752 bytes used of a 131072 byte stack, and 128000 bytes needed. Use 'mysqld -O thread_stack=#' to specify a bigger stack.

I tried running it a second time and I got the following output :

ERROR 1062 (23000) at line 26: Duplicate entry '1' for key 'PRIMARY'

Once again I would be grateful if you could help me out please.

Many Thanks,
 
you need to :

login : /usr/local/zend/mysql/bin/mysql -u root -p

and then issue the command :

DROP sakilla;

then go to your Zend Community Server installation, which comes with a default my.cnf file in which the thread_stack size was set to 128K, and comment out the line in /usr/local/zend/mysql/data/my.cnf, restart the mysql daemon, and vwalah!!! the default is 192K


r937.com | rudy.ca
Buy my new book Simply SQL from Amazon
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top