All About Oracle
Oracle topics, interview questions, answers, doubts and all information about oracle
Feed & Web Facts
10
Feed Item Count
29 May 12 02:52
Last Reading
1.0
RSS/XML Version
UTF-8
Feed Encoding
Related Feeds
You could also like to visit these feeds:
—
Page-Views
—
Weekly People
Week All About Oracle
Newest Posts in Feed
Which command using Query Analyzer will give you the version of SQL server and operating
Which command using Query Analyzer will give you the version of SQL server and operatingsystem?Ans:SELECT SERVERPROPERTY('productversion'), SERVERPROPERTY ('productlevel'), SERVERPROPERTY('edition')
What is SQL server agent?
SQL Server agent plays an important role in the day-to-day tasks of a database administrator (DBA). Itis often overlooked as one of the main tools for SQL Server management. Its purpose is to ease theimplementation of tasks for the DBA, with its full-function scheduling engine, which allows you toschedule your own jobs and scripts.
Can a stored procedure call itself or recursive stored procedure? How many level SP nesting
Can a stored procedure call itself or recursive stored procedure? How many level SP nestingpossible?Ans:Yes. Because Transact-SQL supports recursion, you can write stored procedures that call themselves.Recursion can be defined as a method of problem solving wherein the solution is arrived at byrepetitively applying it to subsets of the problem. A common application of recursive logic is to perfor...
reader