<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Web Hosting India &#187; MYSQL</title>
	<atom:link href="http://windowshostingindia.com/category/mysql/feed/" rel="self" type="application/rss+xml" />
	<link>http://windowshostingindia.com</link>
	<description>cPanel Hosting, Linux Hosting, Website Hosting, Dedicated Server, Hosting Tutorial, Hosting Tools, Hosting Resources</description>
	<lastBuildDate>Thu, 07 Jan 2010 09:12:00 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>MYSQL Error #2002</title>
		<link>http://windowshostingindia.com/mysql/mysql-error-2002/</link>
		<comments>http://windowshostingindia.com/mysql/mysql-error-2002/#comments</comments>
		<pubDate>Sat, 02 Jan 2010 09:53:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=81</guid>
		<description><![CDATA[While accessing PhpMyAdmin getting the following error.
MYSQL Error #2002 &#8211; showing server is not responding or local MySQL server’s socket is not correctly configured. 
Reason :-
The mysql socket file is missing from the /tmp directory
Fix :-
1. Create a symbolic link from the original mysql socket file to /tmp
[root@test ~]# ln -s /var/lib/mysql/mysql.sock /tmp
OR
2. Restart MySQL [...]]]></description>
			<content:encoded><![CDATA[<p>While accessing PhpMyAdmin getting the following error.</p>
<p>MYSQL Error #2002 &#8211; showing server is not responding or local MySQL server’s socket is not correctly configured. </p>
<p>Reason :-</p>
<p>The mysql socket file is missing from the /tmp directory</p>
<p>Fix :-</p>
<p>1. Create a symbolic link from the original mysql socket file to /tmp</p>
<p>[root@test ~]# ln -s /var/lib/mysql/mysql.sock /tmp</p>
<p>OR</p>
<p>2. Restart MySQL service from WHM</p>
<p>WHM Login >> Main >> Restart Services >>SQL Server (MySQL)</p>
<p>OR</p>
<p>3. Edit the PhpMyAdmin configuration file to use the original MySQL socket file.</p>
<p>#  vi /usr/local/cpanel/base/3rdparty/phpMyAdmin/config.inc.php</p>
<p>Make sure, the correct mysql socket file is mentioned there.<br />
———————-<br />
$cfg['Servers'][$i]['socket'] = ‘/var/lib/mysql/mysql.sock’;<br />
$cfg['Servers'][$i]['connect_type'] = ’socket’;</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysql-error-2002/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Error Codes- Part II</title>
		<link>http://windowshostingindia.com/mysql/mysql-error-codes-part-ii/</link>
		<comments>http://windowshostingindia.com/mysql/mysql-error-codes-part-ii/#comments</comments>
		<pubDate>Wed, 23 Dec 2009 09:03:38 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=78</guid>
		<description><![CDATA[MySQL Error Codes, continued from earlier post:
Error: 1026 SQLSTATE: HY000 ER_ERROR_ON_WRITE Message: Error writing file ‘%s’ errno: %d
Error: 1027 SQLSTATE: HY000 ER_FILE_USED Message: ‘%s’ is locked against change
Error: 1028 SQLSTATE: HY000 ER_FILSORT_ABORT Message: Sort aborted
Error: 1029 SQLSTATE: HY000 ER_FORM_NOT_FOUND Message: View ‘%s’ doesn’t exist for ‘%s’
Error: 1030 SQLSTATE: HY000 ER_GET_ERRNO Message: Got error %d from [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL Error Codes, continued from earlier post:</p>
<p>Error: 1026 SQLSTATE: HY000 ER_ERROR_ON_WRITE Message: Error writing file ‘%s’ errno: %d<br />
Error: 1027 SQLSTATE: HY000 ER_FILE_USED Message: ‘%s’ is locked against change<br />
Error: 1028 SQLSTATE: HY000 ER_FILSORT_ABORT Message: Sort aborted<br />
Error: 1029 SQLSTATE: HY000 ER_FORM_NOT_FOUND Message: View ‘%s’ doesn’t exist for ‘%s’<br />
Error: 1030 SQLSTATE: HY000 ER_GET_ERRNO Message: Got error %d from storage engine<br />
Error: 1031 SQLSTATE: HY000 ER_ILLEGAL_HA Message: Table storage engine for ‘%s’ doesn’t have this option<br />
Error: 1032 SQLSTATE: HY000 ER_KEY_NOT_FOUND Message: Can’t find record in ‘%s’<br />
Error: 1033 SQLSTATE: HY000 ER_NOT_FORM_FILE Message: Incorrect information in file: ‘%s’<br />
Error: 1034 SQLSTATE: HY000 ER_NOT_KEYFILE Message: Incorrect key file for table ‘%s’; try to repair it<br />
Error: 1035 SQLSTATE: HY000 ER_OLD_KEYFILE Message: Old key file for table ‘%s’; repair it!<br />
Error: 1036 SQLSTATE: HY000 ER_OPEN_AS_READONLY Message: Table ‘%s’ is read only<br />
Error: 1037 SQLSTATE: HY001 ER_OUTOFMEMORY Message: Out of memory; restart server and try again needed %d bytes<br />
Error: 1038 SQLSTATE: HY001 ER_OUT_OF_SORTMEMORY Message: Out of sort memory; increase server sort buffer size<br />
Error: 1039 SQLSTATE: HY000 ER_UNEXPECTED_EOF Message: Unexpected EOF found when reading file ‘%s’ errno: %d<br />
Error: 1040 SQLSTATE: 08004 ER_CON_COUNT_ERROR Message: Too many connections<br />
Error: 1041 SQLSTATE: HY000 ER_OUT_OF_RESOURCES Message: Out of memory; check if mysqld or some other process uses all available memory; if not, you may have to use ‘ulimit’ to allow mysqld to use more memory or you can add more swap space<br />
Error: 1042 SQLSTATE: 08S01 ER_BAD_HOST_ERROR Message: Can’t get hostname for your address<br />
Error: 1043 SQLSTATE: 08S01 ER_HANDSHAKE_ERROR Message: Bad handshake<br />
Error: 1044 SQLSTATE: 42000 ER_DBACCESS_DENIED_ERROR Message: Access denied for user ‘%s’@&#8217;%s’ to database ‘%s’<br />
Error: 1045 SQLSTATE: 28000 ER_ACCESS_DENIED_ERROR Message: Access denied for user ‘%s’@&#8217;%s’ using password: %s<br />
Error: 1046 SQLSTATE: 3D000 ER_NO_DB_ERROR Message: No database selected<br />
Error: 1047 SQLSTATE: 08S01 ER_UNKNOWN_COM_ERROR Message: Unknown command<br />
Error: 1048 SQLSTATE: 23000 ER_BAD_NULL_ERROR Message: Column ‘%s’ cannot be null<br />
Error: 1049 SQLSTATE: 42000 ER_BAD_DB_ERROR Message: Unknown database ‘%s’<br />
Error: 1050 SQLSTATE: 42S01 ER_TABLE_EXISTS_ERROR Message: Table ‘%s’ already exists<br />
Error: 1051 SQLSTATE: 42S02 ER_BAD_TABLE_ERROR Message: Unknown table ‘%s’<br />
Error: 1052 SQLSTATE: 23000 ER_NON_UNIQ_ERROR Message: Column ‘%s’ in %s is ambiguous<br />
Error: 1053 SQLSTATE: 08S01 ER_SERVER_SHUTDOWN Message: Server shutdown in progress<br />
Error: 1054 SQLSTATE: 42S22 ER_BAD_FIELD_ERROR Message: Unknown column ‘%s’ in ‘%s’<br />
Error: 1055 SQLSTATE: 42000 ER_WRONG_FIELD_WITH_GROUP Message: ‘%s’ isn’t in GROUP BY<br />
Error: 1056 SQLSTATE: 42000 ER_WRONG_GROUP_FIELD Message: Can’t group on ‘%s’<br />
Error: 1057 SQLSTATE: 42000 ER_WRONG_SUM_SELECT Message: Statement has sum functions and columns in same statement<br />
Error: 1058 SQLSTATE: 21S01 ER_WRONG_VALUE_COUNT Message: Column count doesn’t match value count<br />
Error: 1059 SQLSTATE: 42000 ER_TOO_LONG_IDENT Message: Identifier name ‘%s’ is too long<br />
Error: 1060 SQLSTATE: 42S21 ER_DUP_FIELDNAME Message: Duplicate column name ‘%s’</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysql-error-codes-part-ii/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MySQL Error Codes</title>
		<link>http://windowshostingindia.com/mysql/mysql-error-codes/</link>
		<comments>http://windowshostingindia.com/mysql/mysql-error-codes/#comments</comments>
		<pubDate>Tue, 22 Dec 2009 08:55:29 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=76</guid>
		<description><![CDATA[MySQL Error Codes- You may receive an error message while using MySQL extention mysqli or PDO, check out this table which will help you to debug your applications.There could be two type of error, the first might be server errors and the second is client errors. The error messages are listed the source in the [...]]]></description>
			<content:encoded><![CDATA[<p>MySQL Error Codes- You may receive an error message while using MySQL extention mysqli or PDO, check out this table which will help you to debug your applications.There could be two type of error, the first might be server errors and the second is client errors. The error messages are listed the source in the errmsg.txt file.</p>
<p>Error Code SQL State Message</p>
<p>End of Server Errors Error: 1000 SQLSTATE: HY000 ER_HASHCHK Message: hashchk<br />
Error: 1001 SQLSTATE: HY000 ER_NISAMCHK Message: isamchk<br />
Error: 1002 SQLSTATE: HY000 ER_NO Message: NO<br />
Error: 1003 SQLSTATE: HY000 ER_YES Message: YES<br />
Error: 1004 SQLSTATE: HY000 ER_CANT_CREATE_FILE Message: Can’t create file ‘%s’ errno: %d<br />
Error: 1005 SQLSTATE: HY000 ER_CANT_CREATE_TABLE Message: Can’t create table ‘%s’ errno: %d<br />
Error: 1006 SQLSTATE: HY000 ER_CANT_CREATE_DB Message: Can’t create database ‘%s’ errno: %d<br />
Error: 1007 SQLSTATE: HY000 ER_DB_CREATE_EXISTS Message: Can’t create database ‘%s’; database exists<br />
Error: 1008 SQLSTATE: HY000 ER_DB_DROP_EXISTS Message: Can’t drop database ‘%s’; database doesn’t exist<br />
Error: 1009 SQLSTATE: HY000 ER_DB_DROP_DELETE Message: Error dropping database can’t delete ‘%s’, errno: %d<br />
Error: 1010 SQLSTATE: HY000 ER_DB_DROP_RMDIR Message: Error dropping database can’t rmdir ‘%s’, errno: %d<br />
Error: 1011 SQLSTATE: HY000 ER_CANT_DELETE_FILE Message: Error on delete of ‘%s’ errno: %d<br />
Error: 1012 SQLSTATE: HY000 ER_CANT_FIND_SYSTEM_REC Message: Can’t read record in system table<br />
Error: 1013 SQLSTATE: HY000 ER_CANT_GET_STAT Message: Can’t get status of ‘%s’ errno: %d<br />
Error: 1014 SQLSTATE: HY000 ER_CANT_GET_WD Message: Can’t get working directory errno: %d<br />
Error: 1015 SQLSTATE: HY000 ER_CANT_LOCK Message: Can’t lock file errno: %d<br />
Error: 1016 SQLSTATE: HY000 ER_CANT_OPEN_FILE Message: Can’t open file: ‘%s’ errno: %d<br />
Error: 1017 SQLSTATE: HY000 ER_FILE_NOT_FOUND Message: Can’t find file: ‘%s’ errno: %d<br />
Error: 1018 SQLSTATE: HY000 ER_CANT_READ_DIR Message: Can’t read dir of ‘%s’ errno: %d<br />
Error: 1019 SQLSTATE: HY000 ER_CANT_SET_WD Message: Can’t change dir to ‘%s’ errno: %d<br />
Error: 1020 SQLSTATE: HY000 ER_CHECKREAD Message: Record has changed since last read in table ‘%s’<br />
Error: 1021 SQLSTATE: HY000 ER_DISK_FULL Message: Disk full %s; waiting for someone to free some space…<br />
Error: 1022 SQLSTATE: 23000 ER_DUP_KEY Message: Can’t write; duplicate key in table ‘%s’<br />
Error: 1023 SQLSTATE: HY000 ER_ERROR_ON_CLOSE Message: Error on close of ‘%s’ errno: %d<br />
Error: 1024 SQLSTATE: HY000 ER_ERROR_ON_READ Message: Error reading file ‘%s’ errno: %d<br />
Error: 1025 SQLSTATE: HY000 ER_ERROR_ON_RENAME Message: Error on rename of ‘%s’ to ‘%s’ errno: %d</p>
<p>To be continued in next post….</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysql-error-codes/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysqlaccess</title>
		<link>http://windowshostingindia.com/mysql/mysqlaccess/</link>
		<comments>http://windowshostingindia.com/mysql/mysqlaccess/#comments</comments>
		<pubDate>Mon, 21 Dec 2009 07:21:16 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/mysql/mysqlaccess/</guid>
		<description><![CDATA[The mysqlaccess script provides information that can be useful in detect problems with user access to a given database. However before you process for this script you should make sure that you must always do a ‘mysqladmin reload’ after making changes to the MySQL database tables.
Mysqlaccess script support the following option. You may use either [...]]]></description>
			<content:encoded><![CDATA[<p>The mysqlaccess script provides information that can be useful in detect problems with user access to a given database. However before you process for this script you should make sure that you must always do a ‘mysqladmin reload’ after making changes to the MySQL database tables.</p>
<p>Mysqlaccess script support the following option. You may use either the “short” single character or more verbose versions.</p>
<p>-?, –help Display help message.<br />
-v, –version Print version information.<br />
-u, –user=… Username to use for logging into database.<br />
-p, –password=… Password to use for logging into database. Note there can be no space between the -p and the password.<br />
-h, –host=… Name of host to use for host permissions check.<br />
-d, –db=… Name of database to use for database permissions check.<br />
-U, –superuser=… Name of superuser account.<br />
-P, –spassword=… Password for the superuser account.<br />
-b, –brief Print single-line tabular report.<br />
–relnotes Print release notes<br />
–plan Print suggestions/ideas for future releases<br />
–howto Print examples of how to run `mysqlaccess’<br />
–debug=N Enter debuglevel N (0..3)</p>
<p>You should note that you need to also specify the user and db you would like to check. If no host is given, it would be assumed as ‘localhost’.</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysqlaccess/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Common Errors Using MySQL Programs</title>
		<link>http://windowshostingindia.com/mysql/common-errors-using-mysql-programs/</link>
		<comments>http://windowshostingindia.com/mysql/common-errors-using-mysql-programs/#comments</comments>
		<pubDate>Fri, 11 Dec 2009 13:56:22 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=67</guid>
		<description><![CDATA[Here is the list of some common errors that users often encounter when running MySQL programs. 
Common Errors-MySQL Programs
B.5.2.1. : Access denied
B.5.2.2. : Can&#8217;t connect to [local] MySQL server
B.5.2.3. : Lost connection to MySQL server
B.5.2.4. : Client does not support authentication protocol
B.5.2.5. : Password Fails When Entered Interactively
B.5.2.6. : Host &#8216;host_name&#8217; is blocked
B.5.2.7. : Too [...]]]></description>
			<content:encoded><![CDATA[<p>Here is the list of some common errors that users often encounter when running MySQL programs. </p>
<p>Common Errors-MySQL Programs</p>
<p>B.5.2.1. : Access denied<br />
B.5.2.2. : Can&#8217;t connect to [local] MySQL server<br />
B.5.2.3. : Lost connection to MySQL server<br />
B.5.2.4. : Client does not support authentication protocol<br />
B.5.2.5. : Password Fails When Entered Interactively<br />
B.5.2.6. : Host &#8216;host_name&#8217; is blocked<br />
B.5.2.7. : Too many connections<br />
B.5.2.8. : Out of memory<br />
B.5.2.9. : MySQL server has gone away<br />
B.5.2.10.: Packet too large<br />
B.5.2.11.: Communication Errors and Aborted Connections<br />
B.5.2.12.: The table is full<br />
B.5.2.13.: Can&#8217;t create/write to file<br />
B.5.2.14. :Commands out of sync<br />
B.5.2.15. : Ignoring user<br />
B.5.2.16. :Table &#8216;tbl_name&#8217; doesn&#8217;t exist<br />
B.5.2.17. : Can&#8217;t initialize character set<br />
B.5.2.18. : File&#8217; Not Found and Similar Errors<br />
B.5.2.19. : Table-Corruption Issues</p>
<p>Although the problems show up when you try to run client programs, most of the time the easiest solutions involves changing the configuration of the MySQL server. </p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/common-errors-using-mysql-programs/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Delete MySQL Database ?</title>
		<link>http://windowshostingindia.com/mysql/how-to-delete-mysql-database/</link>
		<comments>http://windowshostingindia.com/mysql/how-to-delete-mysql-database/#comments</comments>
		<pubDate>Thu, 23 Apr 2009 15:33:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=31</guid>
		<description><![CDATA[There are many ways to delete data from a database in MySQL but You&#8217;ll need special privilege to create or to delete a MySQL database. In case you want to delete MySQL database here are the process by which you can delete the MySQL database from your web hosting account. 
Follow these Steps to delete [...]]]></description>
			<content:encoded><![CDATA[<p>There are many ways to delete data from a database in MySQL but You&#8217;ll need special privilege to create or to delete a MySQL database. In case you want to delete MySQL database here are the process by which you can delete the MySQL database from your web hosting account. </p>
<p><strong>Follow these Steps to delete MySQL database</strong>:-</p>
<p> After the page loads you will see a table containing the following information which is split into five columns;<br />
# Database &#8211; This entry will be the database name you created in Step 1 above.<br />
#  Size &#8211; This entry will be the size of the database you created in Step 1 above.<br />
#  Users &#8211; This entry will be the users in the database.<br />
# Actions &#8211; You have once choice:<br />
#  Delete Database &#8211; Click on this link to delete a database.<br />
# Once you see the table, find the database you want to delete in the “Database” column.<br />
#  Then click on the Delete Database in the “Actions” column.<br />
# The following confirmation statement will be seen :<br />
“Are you sure you wish to permanently remove the DATABASE_NAME?”<br />
#  Click on the Yes button.<br />
#  The following statement will be seen:-<br />
<strong>“Deleted the database DATABASE_NAME.”<br />
“Database “DATABASE” dropped.”</strong></p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/how-to-delete-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Mysql Dump Timer-MySQL database</title>
		<link>http://windowshostingindia.com/mysql/mysql-dump-timer-mysql-database/</link>
		<comments>http://windowshostingindia.com/mysql/mysql-dump-timer-mysql-database/#comments</comments>
		<pubDate>Tue, 10 Mar 2009 13:25:20 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=29</guid>
		<description><![CDATA[Mysqldump program is used to dump the contents of a MySQL database and allow the transfer of a MySQL database and MySQL tables between different MySQL servers. The SQL statements can be redirected to a file though you should be sure that there is no activity going on while you do. Firewalls will not block [...]]]></description>
			<content:encoded><![CDATA[<p>Mysqldump program is used to dump the contents of a MySQL database and allow the transfer of a MySQL database and MySQL tables between different MySQL servers. The SQL statements can be redirected to a file though you should be sure that there is no activity going on while you do. Firewalls will not block the access to the MySQL database,  A small PHP script which has to be copied to the webserver encapsulates and encrypts the access to the MySQL database.</p>
<p>The mysqldump program supports the following options;</p>
<p>-#, –debug=[options] Output debug information to log. Generally ‘d:t:o,filename`. See Appendix C for further details.<br />
-?, –help Display usage information and exit.<br />
-c, –compleat-insert Generate complete insert statements. (Don’t exclude values that conform to the column default.)<br />
-h, –host=[hostname] Connect to hostname.<br />
-d, –no-data Export only schema information. (Exclude data.)<br />
-t, –no-create-info Export only data, exclude table creation information. (The opposite of -d.)<br />
-p, –password=[password] The password to use when connecting to the web server. Note there can be no space between the -p and the password.<br />
-q, –quick Don’t buffer query results, dump directly to STDOUT.<br />
-u, –user=[username] Username for login. mysqldump will assume you wish to use your current login name if this option is excluded from the command line.<br />
-v, –verbose Print verbose information about the various execution stages of mysqldump.<br />
-P, –port=[port] The port to use when connecting to<br />
-V, –version Output mysqldump version information and exit.</p>
<p>It also enable you to pipe the output of mysqldump to the MySQL client program to replicate a database but you should make sure-no updates are taking place while you’re doing this. </p>
<p>EXAMPLE:<br />
mysqladmin create foo<br />
mysqldump mysql | mysql foo</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/mysql-dump-timer-mysql-database/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Query Analyzer-Keyword Shortcut Part I</title>
		<link>http://windowshostingindia.com/mysql/sql-query-analyzer-keyword-shortcut-part-i/</link>
		<comments>http://windowshostingindia.com/mysql/sql-query-analyzer-keyword-shortcut-part-i/#comments</comments>
		<pubDate>Fri, 26 Sep 2008 12:35:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[MYSQL]]></category>

		<guid isPermaLink="false">http://windowshostingindia.com/?p=18</guid>
		<description><![CDATA[The following lists of keyword shortcuts for SQL Query Analyzer should be helpful to you, the list contains (CTRL+) combination shortcut for SQL Query Analyzer, you would find these shortcut very handy and will surely save your time. 
CTRL+O                &#8212; [...]]]></description>
			<content:encoded><![CDATA[<p>The following lists of keyword shortcuts for SQL Query Analyzer should be helpful to you, the list contains (CTRL+) combination shortcut for SQL Query Analyzer, you would find these shortcut very handy and will surely save your time. </p>
<p>CTRL+O                &#8212; Connect.<br />
CTRL+F4               &#8212; Disconnect.<br />
CTRL+F4               &#8212; Disconnect and close child window.<br />
ALT+F1                &#8212; Database object information.<br />
CTRL+SHIFT+DEL        &#8212; Clear the active Editor pane.<br />
CTRL+SHIFT+C          &#8212; Comment out code.<br />
CTRL+C or Ctrl+Insert &#8212; Copy<br />
CTRL+X or Shift+Del   &#8212; Cut<br />
CTRL-SHIFT-F2         &#8212; Clear all bookmarks.<br />
CTRL+F2               &#8212; Insert or remove a bookmark (toggle).<br />
F2                    &#8212; Move to next bookmark.<br />
SHIFT+F2              &#8212; Move to previous bookmark.<br />
ALT+BREAK             &#8212; Cancel a query.<br />
SHIFT+TAB             &#8212; Decrease indent.<br />
CTRL+DEL              &#8212; Delete through the end of a line in the Editor pane.<br />
CTRL+F                &#8212; Find.<br />
CTRL+G                &#8212; Go to a line number.<br />
TAB                   &#8212; Increase indent.<br />
CTRL+SHIFT+L          &#8212; Make selection lowercase.<br />
CTRL+SHIFT+U          &#8212; Make selection uppercase.<br />
CTRL+V or Shift+Insert &#8212; Paste.<br />
CTRL+SHIFT+R          &#8212; Remove comments.<br />
F3                    &#8212; Repeat last search or find next.<br />
CTRL+H                &#8212; Replace.<br />
CTRL+A                &#8212; Select all.<br />
CTRL+Z                &#8212; Undo.<br />
F5 or Ctrl + E        &#8212; Execute a query.<br />
F1                    &#8212; Help for Query Analyzer.<br />
SHIFT+F1              &#8212; Help for the selected Transact-SQL statement.<br />
F6                    &#8212; Switch between query and result panes.<br />
CTRL+P                &#8212; Print<br />
CTRL+D                &#8212; Display results in grid format.<br />
CTRL+T                &#8212; Display results in text format.<br />
CTRL+B                &#8212; Move the splitter.<br />
CTRL+SHIFT+F          &#8212; Save results to file.<br />
CTRL+R                &#8212; Show Results pane (toggle).<br />
Shift+F6              &#8212; Switch panes.<br />
CTRL+W                &#8212; Window Selector.<br />
CTRL+N                &#8212; New Query window.<br />
F8                    &#8212; Object Browser (show/hide).<br />
F4                    &#8212; Object Search.<br />
CTRL+F5               &#8212; Parse the query and check syntax.<br />
CTRL+S                &#8212; Save<br />
CTRL+SHIFT+INSERT     &#8212; Insert a template.<br />
CTRL+SHIFT+M          &#8212; Replace template parameters.<br />
CTRL+L                &#8212; Display estimated execution plan.<br />
CTRL+K                &#8212; Display execution plan (toggle ON/OFF).<br />
CTRL+I                &#8212; Index Tuning Wizard.<br />
CTRL+SHIFT+S          &#8212; Show client statistics<br />
CTRL+SHIFT+T          &#8212; Show server trace.<br />
CTRL+U                &#8212; Use database</p>
]]></content:encoded>
			<wfw:commentRss>http://windowshostingindia.com/mysql/sql-query-analyzer-keyword-shortcut-part-i/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
