C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Communities   Interview   Jobs   Projects   Offshore Development    
Silverlight Tutorials | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Revenue Sharing |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...

New Feature: Community Sites: Create your own .NET community website and start earning from Google AdSense ! It's Free !




oracle stored procedure


Posted Date: 29 Aug 2008      Total Responses: 1

Posted By: Nagamalleswari       Member Level: Silver     Points: 1


Hi All,

How are you, Sheela went to banglore?



Send me ans:

Create table tabl1

(

id number primary key,

name varchar2(50),

salary number,

address varchar2(100)

)





Insert into tabl1 values(1,’AA1’,10000,’HYd’);

Insert into tabl1 values(2,’AA2’,10000,’HYd’);

Insert into tabl1 values(3,’AA3’,10000,’HYd’);

Insert into tabl1 values(4,’AA4’,10000,’HYd’);





I want to see these details into sql> using stored procedure



Plese any one help me.



thanks,
Malleswari










Responses

Author: J Ramesh    29 Aug 2008Member Level: SilverRating:     Points: 4
Hi Nagamalleswari,

Do you mean you want to insert into the table using Stored Procedure??

If yes then

Create Procedure sp_InsertTabl1

@Name varchar2(50),
@Salary number,
@Address Varchar2(100)
As
BEGIN

Insert into tabl1 values(@Name,@Salary,@Address);

END

Now use this SP from your front end and pass in parameters to be inserted into Database.

regards
Ramesh



Post Reply
You must Sign In to post a response.
Next : Schedular Forloop
Previous : Static variable concept
Return to Discussion Forum
Post New Message
Category: General

Related Messages



dotNet Slackers   BizTalk Adaptors    Web Design

it help desk

Contact Us    Privacy Policy    Terms Of Use