In Sql Server What is Noncount? [duplicate] - sql-server-2008

This question already has answers here:
Closed 11 years ago.
Possible Duplicate:
SET NOCOUNT ON usage
What is "NOCOUNT ON" in sql server, what it is do, where we can use it.

It used to set ON/OFF the message that shows the count of the number of rows affected.

Related

Where can I see procedure in MYSQL? [duplicate]

This question already has answers here:
List of Stored Procedures/Functions Mysql Command Line
(18 answers)
Closed 2 years ago.
Where can I see procedure in MYSQL?
I tried to write procedure in MYSQL but I did not found where I see existing procedure,
It show me only tabels,
Thank you
SHOW PROCEDURE STATUS
Manual page here

MySQL query across two connections [duplicate]

This question already has answers here:
Join tables from two different server
(3 answers)
MySQL Cross Server Select Query
(3 answers)
Closed 5 years ago.
Is it possible to query across two connections in MySql? Or is there a MSSQL "linked server" equivalent?
My goal is this is pseudo code:
SELECT * FROM prd_connection.schema.t_table
INTO dev_connection.schema.t_table_dev

MySQL ignore database case [duplicate]

This question already has answers here:
Are table names in MySQL case sensitive?
(5 answers)
Closed 5 years ago.
Is there a way to ignore database (not table or column) name case in mysql? I have database FOO but I'd like to refer to it as foo.some_table or FOO.some_table. Setting lower_case_table_names doesn't seem to work. I've even migrated to a new database and recreated the database with name foo but now FOO.some_table doesn't work. Is this possible?
You can find the answer to your question here: link. It's article in MySQL documentary about identifier case sensitivity.

When working with access and mysql is there a way to view which queries are used to generate a pivot table? [duplicate]

This question already has an answer here:
How to retrieve the sql code from an Excel 2007 PivotTable
(1 answer)
Closed 3 years ago.
How can I determine which sql queries are being used to generate the data?
MySql has a "processlist" command which can show you the running queries. If you can catch the query as it runs you could see what it's doing.

MySql try catch [duplicate]

This question already has answers here:
Is there a MySQL feature like SQL Server 2005's TRY/CATCH blocks?
(2 answers)
Closed 7 years ago.
I want syntax for try catch in MySql stroed procedure
There isn't any. You can use signal/resignal.