Tracking Forums, Newsgroups, Maling Lists
Home Scripts Tutorials Tracker Forums
  Advanced Search
  HOME    TRACKER    MYSQL






SuperbHosting.net & Arvixe.com have generously sponsored dedicated servers and web hosting to ensure a reliable and scalable dedicated hosting solution for BigResource.com.







Unknown Column


i was using an older version of mysql on my laptop and working on a portal project,
all was going well, no problems even using php5,
i have now upgraded to mysql 5.0.18 and when i try and access the profile page of the forum i get this error....
i'll past the query first then the error i am now getting.

Quote:if ($user_result = db_fetch_array(db_query("select user.*,groups.online_template_large,session.url,session.sessionid from user,groups left join session on session.userid=user.userid where user.userid='$_REQUEST[id]' and user.groupid=groups.groupid order by session.lastactivity desc limit 1")))


View Complete Forum Thread with Replies
Sponsored Links:

Related Messages:
Unknown Column When Using SELECT X AS Y
Someone more experienced than me will probably (I hope) be able to help me with this...

Here is the query:....

View Replies !   View Related
Unknown Column Error?
Unknown column 'ip' in 'on clause'

View Replies !   View Related
Unknown Column In 'on Clause'
I have seen this a couple of times and what throws me for the loop is the column IS in the table.

Unknown column 'cm.state_id' in 'on clause'

select cm.*, o.userid,c.printable_name country_name, s.printable_name
state_name, email_add as owner_email from b2gcar_mst cm, b2gcountry c,
b2gowner_mst o left join b2gstate s on (cm.state_id=s.state_id) where
cm.country_id=c.country_id and cm.owner_id=o.owner_id and cm.cid=Ɔ'

View Replies !   View Related
Unknown Column XXX In 'on Clause' - :(
I use mySql 5 and i get this particular error
error: Unknown column 'p.ID' in 'on clause'
when i'm using the below statement
"select p.title, p.url, p.ID, p.category, p.submitted_user_id ,pc.cat_title ,u.username, u.ID, pc.ID as cat_id, from posts p, post_cats pc, users u left join post_votes pv on pv.post_id=p.ID left join post_comments pcom on pcom.post_id=p.ID where pc.ID=p.category and u.ID=p.submitted_user_id ";

View Replies !   View Related
Unknown Column (assigning Using AS)
SELECT
u.user_id,
u.user_name,
(
SELECT COUNT(friend_from)
FROM friends
WHERE friend_from = u.user_id
) AS friends_added,
(
SELECT COUNT(user_referered)
FROM users
WHERE user_referered = u.user_id
) AS friends_referered,
friends_added + (friends_referered * 10) AS points
FROM users u

Quote:

#1054 - Unknown column 'friends_added' in 'field list'

View Replies !   View Related
Unknown Column Error
I m receiving an unknown column 'foo' in 'where clause' error on the following PHP script.
Can anyone shed any light as to why, because I am stumped.

The following code creates a select box.

function ItemsbyBrand() {
print "<label>Search by Brand</label>
";
print "<form action="">
";
print "<select id="manufacturer" name="manufacturer" onChange="top.location = 'brand.php?brand='+document.getElementById('manufacturer').value;">
<option value="0">Please choose...</option>
";
$resultid = mysql_query("SELECT manufacturer FROM stock GROUP BY manufacturer");
if($resultid) {
while($row=mysql_fetch_array($resultid)) {
printf ("<option value="%s">%s</option>
", $row["manufacturer"],$row["manufacturer"]);
}
}
print "</select>
</form>
";
}
brands.php contains this

<?php BrandResults($_GET["brand"]);
and BrandResults is

function BrandResults($brand) {
$q = sprintf("SELECT stid,name,retailprice,catlist.cat FROM stock LEFT JOIN catlist ON stid = stock WHERE manufacturer=%s ORDER BY retailprice ASC", $brand);
$resultid = mysql_query ($q);
if($resultid) {
BrandResultsName($brand);
if(mysql_num_rows($resultid) > 0) {
ProductTemplateCat ($resultid);
}
else {
print "<p>The are currently no items within these search terms</p>
";
}
}
else print mysql_error();
}
function BrandResultsName($sres) {
printf ("<h2>Items by %s</h2>",$sres);
}

View Replies !   View Related
Unknown Column In Field List
I'm trying to update a text field upc12 in my universal table with a text field upc20 from my newtable where universal table and the newtable have the same UPC number...

UPDATE universal
SET universal.upc12 = newdata.upc20
WHERE universal.upcnumeric = newdata.upcnumeric;

SQL Error: Unknown column 'newdata.upc12' in 'field list'

I have verified that newdata.upc12 is intact.

View Replies !   View Related
Unknown Column 'p.insurance_id' In 'on Clause'
The other day we updated our live server with the latest stable release for fbsd, release 5.0.18, and we began to get 'unknown column in on clause' errors, error code #1054. At first I thought it was a problem with the installation, but I duplicated the exact errors on my personal windows xp pro pc by upgrading to release 5.0.18 from 5.0.11. On another query we get the following error: Line 258: Unknown column 'p.insurance_id' in 'on clause'.

We tried creating a new field, called insurance_id_02, in the patient table and changing the code to look for that field instead of the p.insurance_id field in the on clauses, but mysql returned the same error. Any help would be greatly appreciated. I don't know if this is a bug in the new release or a strange quirk in our db.

View Replies !   View Related
Strange 'unknown Column' Error
PHP

$sql = "SELECT COUNT(*) FROM klanten WHERE username = '$_POST[newid]'";
    $result = mysql_query($sql);
    if (!$result) {    
        error('A database error occurred in processing your '.
              'submission.If this error persists, please '.
              'contact xxx.' . mysql_error());


and I swear there is a column called username. Still, I get an error saying that column username is not there.

Anyone has an idea what might be wrong ?

I just added the column. Does the server need time to refresh or sth ?


View Replies !   View Related
Unknown Column 'some_value' In 'where Clause'
As I navigate through my (still built..) web site, i've created a link that directs to : /show_title?action=show&id=".title_id."
that leads to a page where I run the query:
$id = $_GET['id'];
"SELECT title_name from titles WHERE title_id = $id"
and i get:
--> Unknown column 'CDA15FD' in 'where clause'
although when I move the cursor on the link I get:
/show_title?action=show&id=CDA15FD
and CDA15FD DOES exist in my db!

View Replies !   View Related
Unknown Column 'test' In Order By
These works as expected:
SELECT 2 AS test ORDER BY test
SELECT 2 AS test ORDER BY 2-1

But this errors, saying: "Unknown column 'test' in Order By."
SELECT 2 AS test ORDER BY test-1

Is this a bug or whats the deal? Tested in 5.0.27.

View Replies !   View Related
Unknown Column 'NAN' In 'field List'
I just ran into this issue, and I am hoping that some of you may be
able to help.

I am developing a web-based PHP application with a MySQL back-end. I
have a testing and a production environment. The only discernable
difference between the two is that the testing environment runs MySQL
4.1.14 and the production environment runs 5.0.2.

I made some modifications to an upload page (with just a bunch of
instert statements) today. It works flawlessly on the testing system
but when I push it out to production, I get this error message:

Unknown column 'NAN' in 'field list'

Any ideas?

I expect some of you would suggest that I upgrade my testing
environment so that it matches production. Although I could do this,
in this case the application may give me this error on both systems and
I would be no closer to the solution

View Replies !   View Related
Unknown Column - Variable Names As Strings?
I'm having some trouble inserting records into my DB. The values being written to the database are either the titles of my variables or I get an "unknown column" error.

The following is a printout of what's actually getting saved to the database, followed by the values that are supposed to be sent to the database (from form data): Code:

View Replies !   View Related
Error Code 1054 - Unknown Column
Have 2 tables in my data base. Can fill 1 successfully that has int and dec columns. The other with just text columns keeps throwing up 1054 errors.
I am using the command

insert into table_name
(column_name1, column_name2)
values (text_data_1, text_data_2);
The error I get is 'ERROR 1054 Unknown column in field list'.
I have looked for syntax, config. errors and trawled through my book but it does not appear obvious to me at least.

I have attached a screenshot of the table description and the command sequence I am using plus the error message.

View Replies !   View Related
SQL Error Telling Me There's An Unknown Column That IS In The Table.
this has me very confused...
The error says this:

Quote:

Unknown column 'hotels.hotel_id' in 'on clause'

Here's the query:

View Replies !   View Related
Unknown Column Error With Left Join Query
I can't get my left join operation working whenever my on clause includes a comparison to another table's column. I keep getting errors like this:
#1054 - Unknown column 'pr.risk' in 'on clause'

The query I am trying to execute is shown below. All was working well until I put that top join in. And yes there are risk and issue columns in the pr table....

View Replies !   View Related
ERROR 1054 (42S22) At Line 1: Unknown Column
During a simple select statement in batch mode I receive the "ERROR 1054 (42S22) at line 1: Unknown column" error. This same select statment works just fine while logged in to mysql.

** LOGGED IN **
mysql> select lake_location from LakeInfo where lake_name='Clinton';
+---------------+
| lake_location |
+---------------+
| Lawrence, KS |
+---------------+
1 row in set (0.00 sec)

** BATCH MODE **
root@server:/usr/local/scripts/lakeinfo# mysql --user=lake_user --password=xxx LakeData -Bse 'select lake_location from LakeInfo where lake_name='Clinton''
ERROR 1054 (42S22) at line 1: Unknown column 'Clinton' in 'where clause'

View Replies !   View Related
#1054 - Unknown Column 'trxtal.groupno' In 'on Clause'
running this query iam getting the following error:

select trxtal.groupno as groupn,artwork.artworkno as artworkno,count(trxtal.groupno) as grp from trxtal, mstcus LEFT JOIN artwork ON (trxtal.groupno=artwork.groupno and trxtal.classcode=artwork.classcode) where trxtal.groupno=mstcus.groupno group by mstcus.groupno having sum(artwork.artworkno)>0

#1054 - Unknown column 'trxtal.groupno' in 'on clause'

This query was working fine before with my old version of mysql, when i upgarde i am getting this error....pls help

MYSQL version:5.0.51b
Apache version :2.2.8
PHP version: 5.2.6

View Replies !   View Related
Unknown Column In Field List Error 1054
(dberrorMsg: Unknown column 'PRO0000652' in 'field list' dberrorNo: 1054)

The 'PRO000652' is actually in the value list of the insert statement. The line below is part of the error showing the offending value.

execute(insert into PROTOCOLIRB (PROTOCOL_ID,IRB_ID,APPROVAL_DATE,APPROVAL_NUMBER) values (247,1,'2007-08-01',PRO0000652))

View Replies !   View Related
Error 1054: Unknown Column Xxxx In WHERE Clause..
I'm trying to run this query

$uneRequete = "SELECT * FROM Usager WHERE motDePasse = {$loginPassword}";

and I get this error message : Error 1054: Unknown column 'xxxx' in WHERE clause.....
where 'xxxx' is the content of $loginPassword

I don't know what is going on.

View Replies !   View Related
Error 1054 <42S22>: Unknown Column 'user' In 'where Clause'
am trying too delete a user from mysql database (which is used primarly for mediawiki). I typed in the following command in mysql command line client

use wikidb;

database changed

Delete from user where User='Admin';

Too which I recieved the error

Error 1054 <42S22>: Unknown column 'user' in 'where clause'

View Replies !   View Related
Mysql 5.x And "unknown Column" Error
I read a similar post here about putting the table name in parentheses before a LEFT JOIN because mysql 5x is more strict than 4.1.

However, it doesn't seem to be working.

The original error I got (when the web host decided to upgrade their mysql version across the board without really checking with anyone!) was this:

Unknown column 'products.category' in 'on clause'

So I'm stumped. I've checked and rechecked my syntax but either I get the above error or a general syntax error. I'm mostly a hack programmer, so I won't pretend to understand everything here ..........

View Replies !   View Related
Unknown SQL Type
For some reason i get this error for queries when i run them in VB.NET. But when i run the query in MySQL Query Analyzer it works perfectly fine. Is anyone familiar with this error Unknown SQL type - 0.

View Replies !   View Related
Unknown Option -- Log-bin
Trying to use the mysql command-line client with a MySQL 5.0.21 database on Windows 2003 Server, and am getting the error message:

mysql: unknown option '--log-bin'

What does this mean and how can I get my command-line client back?

View Replies !   View Related
Phpmyadmin: Size Unknown
When I import mysql data from a dump file into mysql, then phpmyadmin under structure shows sizes as unknown. I googled for this, but could not find a good answer.

How do I get the information to show in phpmyadmin?

View Replies !   View Related
MySQL Password Unknown
Unsure what to do next.

1. Apache running in task bar.
2. PHP info function brought expected results.
3. Clicking on MySQL Command Line Client brings up a DOS box that says:

Enter password:

When typing either the only password I would have used upon installing OR using nothing and pressing ENTER, the box disappears with a loud computer default beep, then nothing.

View Replies !   View Related
SELECTing A Single Unknown Value
I'm trying to find the best method of determining if two people are from the same area, my setup goes as follows I have a member table, a location table and a m2l (member to location) relation table which simply has an id, a member_id, and a location_id

I would like to be able to search if, given 2 member ids, they have a location id in common, since one member may have many locations. Is there a way to SELECT * FROM location, m2l WHERE location.id=m2l.location_id AND member.id='1' OR member.id='2'

is there a way I can SELECT only 1 location id which still satisfies the member.id='1' or member.id='2'? Since I don't know if they have any locations in common, i can't explicitly specify a location id...

View Replies !   View Related
Unknown Collation Problem
#1273 - Unknown collation: 'bJxHZ6M1mX6hwAXAbRdZA-J98V3_0AdfyjflUKgmpbk.'

And every time the string 'bJxHZ..." is different.

I installed and upgraded my system but still doesn't work.

I supposed the problem was in my.cnf and realized I didn't have a collation in that file, so I added

default-character-set = latin1
character-set-server = latin1
collation-server = latin1_spanish_ci

And, it worked but after a reboot, I get the same error.

My system is openSuSE 10.2, mysql 5.0.26 and apache 2.2.3

View Replies !   View Related
Deleting Some Unknown Caracters ?
I have a lot of fields where I want to delete 4 random numbers.

So, these fields for example :

1- "Client : 5841 TX"
2- "Client : 9822 TX"
3- "Client : 0330 TX"
4- "Client : 4987 TX"

Have to be like :

1- "Client : TX"
2- "Client : TX"
3- "Client : TX"
4- "Client : TX"

Is this possible ? I tried this but it didn't make it :

UPDATE `table` SET field = REPLACE (field,'Client : % TX','Client : TX')
WHERE field LIKE '%Client%TX%'

Do you think it's possible ?

View Replies !   View Related
Unknown VALUES Number
I have to insert some rows in a two columns table in the form (a,b) where a is fixed and b has n different values; my query should appears like:

INSERT INTO `table` (`id_a`,`id_b`) VALUES ('1','1'),('1','2'),('1','3'),...,('1','n')

the list of values for b come from a PHP script and are listed in a comma-separated string:

1,2,3,4,...,n

how can I modify my query to insert the rows using that string?
I thought about something like:

INSERT INTO table (`id_a`, `id_b` ) VALUES ('1', IN(appendTheStringHere)) .

View Replies !   View Related
One Value, Unknown Number Of Instances
Say I want to have a DB that keeps track of how many pints (of prune juice) I drink (okay, bad example) Each pint will have a size and the amount of time it took to drink, but I don't know how many pints I will have in each instance.

Would I have a table for Pint that had pint_size and drink_time, and then a table DrinkingSession that had num_of_pints? But then how would I log the time for each pint?

Could I write a DrinkingSession table that had pint1, pint2 pint3, etc?

View Replies !   View Related
Unknown System Variable
Im trying to install a script and this is showing up:

[Unknown system variable 'NAMES']

My MySQL version is MySQL 4.0.25. Is it because the version?

View Replies !   View Related
Unknown Why This Error Is Happening
unknown column 'g.id' in 'field list'
in this SQL?

CREATE TABLE teamScoresH2H
(
SELECT
t1.id as team_1_Id,
t2.id as team_2_Id,
COUNT(DISTINCT g.id) AS nbrOfGames,
SUM(IF(g.homescore > g.visitorscore, 1,0)) AS Wins,
SUM(IF(g.homescore < g.visitorscore, 1,0)) AS Losses,
SUM(IF(g.homescore = g.visitorscore, 1,0)) AS Ties,
SUM(IF(g.homescore > g.visitorscore, 3, IF(g.visitorscore = g.homescore, 1, 0))) AS Score
FROM
teams t1
INNER JOIN teams t2 ON t1.id <> t2.id
LEFT JOIN games g ON (g.homeid = t1.id AND g.visitorid = t2.id) OR (g.homeid = t2.id AND g.visitorid = t1.id)
WHERE
(t1.division='AA' OR t2.division='AA') AND
(t1.division='AA' OR t2.division='AA') AND
(g.homescore not in (999,777) or g.homescore is null)
GROUP BY
t1.id, t2.id
)

View Replies !   View Related
Unknown Table In Where Clause?
Why won't my mysql client recognize gallery_details?

Code:
SELECT p.photo_id, p.venue_id, p.event_id, p.views
FROM photos p
WHERE gallery_details.category = 1 ORDER BY views DESC LIMIT 100;
the error

SELECT p.photo_id, p.venue_id, p.event_id, p.views
FROM photos p
WHERE gallery_details.category =1
ORDER BY views DESC
LIMIT 100

MySQL said: Documentation
#1109 - Unknown table 'gallery_details' in where clause

View Replies !   View Related
Can I: Export Column, Optimize & Fill New Column With Value To Original Column?
I have a database with over 40,000 rows and 28 columns (learned how to import large files by changing php.ini!).

Using Excel, I am able to: (A) copy and paste original column (e.g., SIZE_TEXT) (B) ALONG with each records' UNIQUE_KEY, (C) sort SIZE_TEXT column, (D) filter for unique values, (E) fill new column with its SIZE_TEXT__KEY, and then (F) import the new SIZE_TEXT_KEY value into the database by creating a new column or pasting over the columns original value.

However, I think this can be performed, with less potential for error, using phpMyAdmin, but I haven't found anything demonstrating how to perform these actions.

I searched the terms optimization and normalization.

I am hoping one can use phpMyAdmin to:

1) create a new table with export column of the original table (SIZE_TEXT_TABLE),
2) sort new table for duplicates and show only unique values, then
3) import the column results into each Unique Records original column (SIZE_TEXT)
4) link new column values to Foreign Key (the Parent Table's SIZE_TEXT_KEY)

View Replies !   View Related
Joining Tables On Unknown Table Name
I have a framework that uses dynamically created tables, named using an
incremental "attribute set ID", as follows:

attrdata_1
attrdata_2
attrdata_3
etc, etc...

I also have another table that stores data for each object within the
framework, called "object". The fields in this table are fixed so are always
known, one of which is "attrset_id" which relates to one of the
"attrdata_***" tables.

The fields in the "attrdata_***" tables are all unknown except for a fixed
"object_id" field that links objects with an entry in those tables.

The idea is that the "attrdata_***" tables can be used to extend the data
for each object so, for example:

We need to extend Object 100 to store new properties "name", "address" and
"tel", so a new "attrdata_4" table is created containing fields "object_id",
"name", "address" and "tel" and "object_id" is set to "100" (the object's
ID) and the "attrset_id" field in the "object" table is set to "4" (the
newly created attribute set's ID).

Now, when querying the DB I want to link the "object" table with the
relevant "attrdata_***" table to get the complete extended data set, so
ideally this would be....

SELECT O.*, A.* FROM object AS O
LEFT JOIN CONCAT("attrdata_", O.attrset_id) AS A ON O.id=A.object_id
WHERE O.id=100

... but that doesn't work. What I need to know is if anything along those
lines exists? I've looked, but not found so I'm now making sure :) Although
it could be done using a couple of statements, I'd prefer, if possible, a
single statement solution.

View Replies !   View Related
Unknown Variable --defaults-file
I am trying to use the --defaults-file with a compiled version of mysql on a Feodra Core 2 based on Linux-2.6.5 I type the following command :

/usr/local/mysql4src/libexec/mysqld --basedir=/usr/local/mysql4src
--datadir=/usr/local/mysql4src/data --user=mysql4
--pid-file=/usr/local/mysql4src/data/mysql.pid --socket=mysqld.sock
--defaults-file=/usr/local/mysql4src/my.cnf

041110 11:47:43 [ERROR] /usr/local/mysql4src/libexec/mysqld: unknown
variable 'defaults-file=/usr/local/mysql4src/my.cnf'

I am using mysql-4.1.7 and compiled it with the following options :
../configure
--prefix=/usr/local/mysql4src
--localstatedir=/usr/local/mysql4src/data
--with-unix-socket-path=/usr/local/mysql/tmp/mysql.sock

Do I have to compile mysql with a special option or something like this?

View Replies !   View Related
Mysqldump: Unknown Variable 'quickmax_allowed_packet=16M'
I am moving from a master reseller to a VPS

Recieving this error while moving mysql:

mysqldump: unknown variable 'quickmax_allowed_packet=16M'

View Replies !   View Related
Unknown MySQL Server Error
I receive the error below when I try and add a post to my website. Any idea what is going on?

Warning: mysql_pconnect(): Unknown MySQL Server Host 'host' (0) in /home/webbport/public_html/guest.php on line 69
Unable to connect to SQL server

View Replies !   View Related
Unknown Table 'xxxx' In Where Clause
I have been looking through a few of the forum posts here and I haven't found a solution to my problem.

There error I am getting is:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'

[MySQL][ODBC 3.51 Driver][mysqld-4.1.7-nt]Unknown table 'girls' in where clause

/xxx/xxx.asp, line xxx

[asp]
Dim RSGirls
Dim RSThumbs
Dim GirlSQLStmt
Dim ThumbSQLStmt

GirlSQLStmt = "SELECT Name, Height, Age, Weight, Bust, Waist, Hips, Pictures, Description "
GirlSQLStmt = GirlSQLStmt & "FROM Girls"

ThumbSQLStmt = "SELECT * FROM tourthumbs WHERE tourthumbs.id = girls.id"

Set RSThumbs = MyConn.Execute(ThumbSQLStmt)
Set RSGirls = MyConn.Execute(GirlSQLStmt)
[/asp]

There are two tables in the database, 'girls' and 'tourthumbs'. I have checked the permissions that I have set for MySQL and made sure that I can access them both. Both tables also exist and so does the id field in both tables.

View Replies !   View Related
Save A List Of Unknown Length
I'm trying to create a db that I can store recipes in.I would like to have a table for the recipes and a seperate table for the ingredients,but each recipe will have an unknown number of ingredients.i don't really want to create max-ingredients +1 fields and I would prefer not to save a string of PKs that i have to parse appart.This has got to be a common task, how is it done?

View Replies !   View Related
Unknown MySQL Server Host
I have a production webApplication running on linux, apache; which most of the time runs fine, except once a while; I receive this warning message:

Warning: Unknown MySQL Server Host 'serverName.com' (11) in /usr/local/apache/htdocs/webApplication/db.php on line 12

...here is my db.php ...
<?PHP

function dbConn()
{
$hostname = "servername.com";
$username = "root";
$password = "the_pwd";
$dbname = "mysqldbName";

$dbLink = mysql_connect ($hostname, $username, $password) OR DIE("Unable to connect to database");
mysql_select_db ($dbname) or die("Unable to select database");
return $dbLink;
}

function dbEnd($dbLink)
{
mysql_close($dbLink);
}
?>

View Replies !   View Related
#2000 - Unknown MySQL Error
I'm using my SQL via one of SBC yahoo's packaged deals for web access.

Everything had been going along smoothly...until today.

Under PHPMYADMIN...privileges I started seeing the following msg:

Warning: Your privilege table structure seem to be older than
this MySQL version!
Please run the script mysql_fix_privilege_tables that should be included in your MySQL server distribution to solve this problem!

Whatever SQL statement I try to run (a select, alter, update etc etc) I get the #2000 - Unknown MySQL error msg. So I can't run the script mentioned in the error msg since it won't get past the very 1st alter statement.

I'm not sure what went wrong but I can't even "reload mysql" - I just keep getting the "Uknown" msg.

With the exception of the "mysql" database, all of my other databases show a dash sign instead of the number of tables (in the PhpMyAdmin drop down. I can't even click on one of them without getting the "uknown" msg.

View Replies !   View Related
Mysql: Unknown Option '--ndbcluster'
Running into some issues while configuring my cluster....

I'm setting up a cluster with two storage nodes and one management node...
The problem I'm having is that when I try to open MySQL on one of the storage nodes I get this error...

mysql: unknown option '--ndbcluster'

but i do not get this error on the other storage node and i am able to access MySQL on it.

The my.cnf file looks like this:

[mysqld]
datadir=/var/lib/mysql
socket=/var/lib/mysql/mysql.sock
# Default to using old password format for compatibility with mysql 3.x
# clients (those using the mysqlclient10 compatibility package).
old_passwords=1

[mysql.server]
user=mysql
basedir=/var/lib

[mysql_safe]
err-log=/var/log/mysqld.log
pid-file=/var/run/mysqld/mysqld.pid

#Options for MySQLD process
[MYSQL]
ndbcluster #run ndb engine
ndb-connectstring=x.x.x.x #location of MGM node

#Options for ndbd process
[MYSQL_CLUSTER]
ndb-connectstring=x.x.x.x #location of MGM node

If anyone can let me know what the problem is it would be greatly appreciated...
I'm running Fedora Core 4 and MySQL 5.0.19 MAX

View Replies !   View Related
Solaris 8 Daemon Fails Because Unknown Option?
I guess people did not see my post from the install thread... I am really really stuck now! Does anyone work on Solaris???

Whatever option I use to start the daemon I get this:

050310 15:27:35 mysqld started
050310 15:27:35 [ERROR] /opt/mysql/bin/mysqld: unknown option '--~'

Please Help

Note that I am using the binaries from this site.

View Replies !   View Related

Copyright © 2005-08 www.BigResource.com, All rights reserved