#1148 - The used command is not allowed with this MySQL version [closed] - mysql

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
04,
Am trying to load a csv file into a database but its giving the error
#1148 - The used command is not allowed with this MySQL version
my Code to load file
LOAD DATA LOCAL INFILE '//home//triveni//Documents//test.csv'
INTO TABLE 1981_5
FIELDS TERMINATED BY ','
ENCLOSED BY ''
LINES TERMINATED BY '\n'
(question,answer1,answer2,answer3,answer4,answer5,answer6,rightAnswer,Marks)
and the data in the file is
Whartsdf,dsfds,sdfdsf,sdfdsf,sdfds,sdf,fsdf,2,2
Any One Please help me i have tried all the possibilities changed the privileges, Tried of onlyLOAD DATA INFILE
But I dint got the solution...
And its working good in Windows OS
Is This OS Problem????

Related

PHP, error after function call [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 9 years ago.
Today I moved my web on new web hosting and then
Parse error: syntax error, unexpected '[' in /data/web/virtuals/41994/virtual/www/application/theme/admin-template/header.php on line 45
I dont know, what is bad on user::get('user_name')[0], I dont have any problems with this on old web hosting. I just wanna get first character of that ( if i used substr, I had no problem, but i got lot of, and i wanna know why :) )
PS: Similar problem with this:
$test = mysql_fetch_array(mysql_query('SELECT test FROM test'))['test'];
You are probably using php 5.3. This syntax is not allowed until 5.4+.
Use this instead:
$row = mysql_fetch_array(mysql_query('SELECT test FROM test'));
$test = $row['test'];
Ignoring the mysql_query hole... That's a separate issue.

Unable to use Intellisense on SSMS [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I am using SQL SERVER 2008 R2 Management Studio. My intellisense is not working, it is enabled when I right click but still not able to use.
Does anyone know about why this happens? And why am I not able to use it?
There may be some problem of missing dll files. Try updating your sql server and restart your machine. If there is still such problem than you have to reinstall it. That will be the last option.

Can't create/write to file '/tmp/#sql_17f0_0.MYD' (Errcode: 17) [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 11 years ago.
In site after logged in it is redirecting me to profile.php but on that page it shows me error like this:
Can't create/write to file '/tmp/#sql_17f0_0.MYD' (Errcode: 17)
Actually I don't know what this error is and why its given.
It looks like that the script uses a feature called temporary table in MySQL but MySQL is not properly configured to allow that feature on your (MySQL) server.
You need to talk with the system administrator of the server, explain the problem and let it get fixed.

Rake db:migrate missing :controller [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
I'm very confused about this error message, I'm completely unaware of any missing controllers yet this is the error it's spitting out
There's a little more that's cut off but I really hope that helps, this is a really frustrating error.
It looks like you have invalid routes. When you run rake db:migrate, it loads the entire Rails environment, so if there's an error while loading, there will be an error while migrating.
Post your routes.rb file if you need help fixing your routes.

Missing Database Table Cakephp [closed]

This question is unlikely to help any future visitors; it is only relevant to a small geographic area, a specific moment in time, or an extraordinarily narrow situation that is not generally applicable to the worldwide audience of the internet. For help making this question more broadly applicable, visit the help center.
Closed 10 years ago.
Error: Database table users for model User was not found.
I'm expriencing the error show above and I'm unsure why this is happening. I've searched for a possible solution to this problem and the most prevalent solution is... going to the app/tmp/cache directory and removing the files in the model and persistent folders. I've done that and I'm still seeing this error message. I presume the database is connected properly because I'm not seeing any connection errors and when I use the wrong login credentials, I see connection error messages. I also have a users table so the table does exist in the database. Could it be my permissions? If so how do change them as I'm using Bluehost for my hosting. Please help me with this problem.
Click MySql Database Wizard in Bluehost to grant users permission duh!!