Click here to Skip to main content
15,917,005 members
Home / Discussions / Database
   

Database

 
AnswerRe: C# DataSet DataAdapter Design Pin
Stephen McGuire6-Sep-06 7:02
Stephen McGuire6-Sep-06 7:02 
GeneralRe: C# DataSet DataAdapter Design Pin
llap4446-Sep-06 7:34
llap4446-Sep-06 7:34 
QuestionTranforming two text files using DTS Pin
dayakar_dn6-Sep-06 2:42
dayakar_dn6-Sep-06 2:42 
QuestionRunning Program(on VB .NET) Without SQL Pin
FriendlySoluations6-Sep-06 1:24
FriendlySoluations6-Sep-06 1:24 
AnswerRe: Running Program(on VB .NET) Without SQL Pin
Colin Angus Mackay6-Sep-06 3:14
Colin Angus Mackay6-Sep-06 3:14 
AnswerRe: Running Program(on VB .NET) Without SQL Pin
Stephen McGuire6-Sep-06 5:27
Stephen McGuire6-Sep-06 5:27 
Question.NET and metadata of database Pin
Imtiaz Murtaza5-Sep-06 22:51
Imtiaz Murtaza5-Sep-06 22:51 
Questionstoere procedure Pin
yazan_zahi5-Sep-06 22:44
yazan_zahi5-Sep-06 22:44 
--1fst sp
CREATE PROCEDURE Ks_Ins_Media_Item
@Desc nvarchar(200),
@added_date datetime,
@Added_by nvarchar(100),
@item int output
As
insert into Ks_Media_Item ([Description],Added_Date,Added_By)
values(@Desc,@added_date,@Added_by)
set @item = @@identity
============================
--2sd sp
CREATE PROCEDURE Ks_Ins_Media_Item_content
@Item_No int,
@content ntext,
@textlength int
As
insert into Ks_Media_Item_content(Item_no,content,text_length)
values(@item_no,@content,@textlength)
========================================
--3rd sp
CREATE procedure ks_media_item_full_data

@Desc nvarchar(200),
@added_date datetime,
@Added_by nvarchar(100),
@content ntext,
@textlength int
as
declare @ItemNo int
execute dbo.Ks_Ins_Media_Item @item output,@Desc, @added_date, @Added_by

execute dbo.Ks_Ins_Media_Item_content @ItemNo output,@content, @textlength
===================================
can you help me
i want to pass yhe output parameter to 3rd sp
becuse 1st the Item_no is identity yes
and in 2sd sp identity false
how can i do it
pls
AnswerRe: stoere procedure Pin
Eric Dahlvang6-Sep-06 12:11
Eric Dahlvang6-Sep-06 12:11 
Questionhow to pass a parameter in procedure Pin
yazan_zahi5-Sep-06 22:03
yazan_zahi5-Sep-06 22:03 
AnswerRe: how to pass a parameter in procedure Pin
albCode5-Sep-06 22:10
albCode5-Sep-06 22:10 
GeneralRe: how to pass a parameter in procedure Pin
yazan_zahi5-Sep-06 22:17
yazan_zahi5-Sep-06 22:17 
GeneralRe: how to pass a parameter in procedure Pin
albCode5-Sep-06 22:37
albCode5-Sep-06 22:37 
QuestionEditing a MS Access database Pin
myNameIsRon5-Sep-06 21:28
myNameIsRon5-Sep-06 21:28 
AnswerRe: Editing a MS Access database Pin
Stephen McGuire6-Sep-06 5:22
Stephen McGuire6-Sep-06 5:22 
GeneralRe: Editing a MS Access database Pin
myNameIsRon6-Sep-06 15:16
myNameIsRon6-Sep-06 15:16 
GeneralRe: Editing a MS Access database Pin
Stephen McGuire7-Sep-06 2:57
Stephen McGuire7-Sep-06 2:57 
QuestionSql statement Pin
charbelasmar5-Sep-06 20:53
charbelasmar5-Sep-06 20:53 
AnswerRe: Sql statement Pin
Eric Dahlvang6-Sep-06 3:54
Eric Dahlvang6-Sep-06 3:54 
QuestionODBC API Query Pin
Kuira5-Sep-06 14:05
Kuira5-Sep-06 14:05 
AnswerRe: ODBC API Query Pin
cmk8-Sep-06 11:31
cmk8-Sep-06 11:31 
QuestionCollation Error Pin
HRiazi5-Sep-06 11:12
HRiazi5-Sep-06 11:12 
AnswerRe: Collation Error Pin
HRiazi5-Sep-06 20:05
HRiazi5-Sep-06 20:05 
QuestionSQL TOP Equivalen in SQL Server Everywhere 2005!!! Pin
Nadia Monalisa5-Sep-06 9:30
Nadia Monalisa5-Sep-06 9:30 
AnswerRe: SQL TOP Equivalen in SQL Server Everywhere 2005!!! Pin
HRiazi5-Sep-06 11:16
HRiazi5-Sep-06 11:16 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.