top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

What are the restrictions while creating batches in SQL Server?

+4 votes
267 views
What are the restrictions while creating batches in SQL Server?
posted Oct 19, 2015 by Shivaranjini

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

+1 vote

CREATE DEFAULT, CREATE PROCEDURE, CREATE RULE, CREATE TRIGGER, and CREATE VIEW statements cannot be combined with other statements in a batch.

A batch can't contain altered command and then the new columns referenced command of the same table.

The EXECUTE keyword is not required, when an EXECUTE statement is the first statement in a batch

answer Oct 22, 2015 by Manikandan J
...