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 Andrzejek on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

How MySQL is installed?

Status
Not open for further replies.

jabw

Technical User
Apr 30, 2003
103
NL
Hi,

I'm using a MySQL database, installed on a Windows 2003 machine, that's installed sometime ago.?
But I don't know how it's installed.
I think it's installed as a development database? with a limited number of users? but I don't know this for sure.

Any suggestions how to check what's possible with this installation?

Thanks.
 
There is no such thing as a development database with a commercially limited number of users.

To see what's possible:
Code:
SELECT @@SQL_MODE;
shows the main settings. Can be empty or a combination of server settings.
Code:
SHOW ENGINES;
Shows what engines are available.
Code:
SELECT VERSION();
shows what version is installed. Look at to see what the changes are for newer versions.

+++ Despite being wrong in every important aspect, that is a very good analogy +++
Hex (in Darwin's Watch)
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top