Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Microsoft SQL Server vs Oracle 8i 1

Status
Not open for further replies.

murzina

Programmer
Jan 14, 2009
14
I would like to find out what is the equivalent syntax in Microsoft SQL Server for dbms_output.put_line('any text'); (this line is OK for Oracle 8i).
 
What does this do in Oracle?
Code:
dbms_output.put_line('any text');
 
Code:
PRINT 'any text'
is probably what you are looking for.
 
Where can I find a glossary of commands used in Microsoft SQL Server? It's kinda tedious to ask for every command on the forum. I used Oracle 8 and 7 before, but, obviously, it has its own syntax.
 
Books on line - SQL Serever Help

also this book might help
SQL in a Nutshell; Kevin and Daniel Kline; O'Reilly;
it has both oracle and SQL Server syntax

"NOTHING is more important in a database than integrity." ESquared
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top