what are batch in sql server?
Answers were Sorted based on User's Feedback
Answer / kumar
Batch in Sql server is a set of one or more Transact-SQL
statements sent from a client to an instance of SQL Server
for execution and it will represents a unit of work
submitted to the Database Engine by users.
Is This Answer Correct ? | 16 Yes | 0 No |
Answer / sirisha
Batch is nothing but a set of sql statments that are
executed at time (all the stmts will be exceuted or none(if
any error encountered))
eg:
use [database]
GO
select empname from employee
insert employee(empno,empname)
select empno =1
,empname ='A'
GO
Is This Answer Correct ? | 11 Yes | 6 No |
What are the main sources of data?
What is repeatable read?
Why would you use sql agent?
How much space does sql server 2016 take?
what is hash nonclustered index
Differentiate between a local and a global temporary table?
How to convert a numeric expression from one data type to another?
How do I save a stored procedure in sql server?
what is checksum in sql server.........???
which one will take 1st priority in case of insert statement and select statement???
how to find nth highest salary
103 Answers Cognizant, IBM, NexGen, Oracle,
how can you attach more than 20 ldf files in sql server