> well,
> is that possible at least, to exit script on given condition?
Do you want a return code or not? If you don't want a return code
then you can wirite:
If <condition> Return
If you want a return code then you need to use a stored proc and inside
the procedure you can write:
If <condition> return 100
In your application you can check for status of the called procedure
and take action based on that.
> is that possible at least, to exit script on given condition?
Depends on how run it. In SQLCMD or OSQL you can exit immediately
by using a RAISERROR with state 127:
RAISERROR('Got a good reson for taking the easy way out now', 16, 127)
This does not work from Query Analyzer or Mgmt Studio.

Signature
Erland Sommarskog, SQL Server MVP, esquel@sommarskog.se
Books Online for SQL Server 2005 at
http://www.microsoft.com/technet/prodtechnol/sql/2005/downloads/books.mspx
Books Online for SQL Server 2000 at
http://www.microsoft.com/sql/prodinfo/previousversions/books.mspx
fireball - 29 Dec 2006 15:37 GMT
Uzytkownik "Erland Sommarskog" <esquel@sommarskog.se> napisal w wiadomosci
> RAISERROR('Got a good reson for taking the easy way out now', 16, 127)
Uzytkownik <othellomy@yahoo.com> napisal w wiadomosci
> If <condition> Return
all this hepled.