What is storeprocedure?Tell me synatx for how to write stored
procedure.
Answer Posted / sumit ranjan
Stored procedures simplify Analysis Services database development and implementation by allowing common code to be developed once and stored in a single location. Stored procedures can be used to add business functionality to your applications that is not provided by the native functionality of MDX.
create procedure myproc
@gender varchar(30)
as
begin
| Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
What is difference between getdate and sysdatetime in sql server 2008?
What are “phantom rows”?
What is your recommendation for a query running very slow? : sql server database administration
How to automatically create a log when an exception is being received into SQL Server?
What is perspective, have you ever created perspective? : sql server analysis services, ssas
Do you know sql server 2008 introduces automatic auditing?
How to generate create table script on an existing table in ms sql server?
What do you mean by tablesample?
What is b tree index?
List out a number of the wants to setup a SQL Server failover cluster?
How can you check the level of fragmentation on a table?
What is the purpose of the tempdb database?
What is cursor in ms sql server?
You have a table ‘test’ which is a copy of northwind employee table you have written a trigger to update the field ‘hiredate’ with the current date
Is candidate a key?