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

Questions about SQL_BUFFER_RESULT

Status
Not open for further replies.

lcs01

Programmer
Aug 2, 2006
182
US
I am relatively new to mysql.

My questions are:

1) How to set SQL_BUFFER_RESULT's value?
2) How to check its value? I tried something like:

SHOW VARIABLES LIKE '%BUFFER%';

It did not give me what I was looking for.

Thanks for you help.
 
I know how to set it up now.

mysql> set SQL_BUFFER_RESULT=1;
Query OK, 0 rows affected (0.00 sec)

or

mysql> set sql_buffer_result=0;
Query OK, 0 rows affected (0.00 sec)

Note that it is case insensitive.

But I still don't know how to check its value.

Can someone help?
 
Thank you. I actually saw this on the web. But I thought it was a typo :( -- I did not realize '@@' could have meant something.

Thanks again.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top