Click here to Skip to main content
16,003,315 members
Home / Discussions / Database
   

Database

 
Questiontransfer mysql proceedures Pin
Jassim Rahma8-Jul-12 20:35
Jassim Rahma8-Jul-12 20:35 
QuestionError can not attach a database with the same name? Pin
Member 24584675-Jul-12 18:18
Member 24584675-Jul-12 18:18 
AnswerRe: Error can not attach a database with the same name? Pin
Midnight Ahri5-Jul-12 22:21
Midnight Ahri5-Jul-12 22:21 
GeneralRe: Error can not attach a database with the same name? Pin
Member 24584678-Jul-12 18:32
Member 24584678-Jul-12 18:32 
AnswerRe: Error can not attach a database with the same name? Pin
Mycroft Holmes5-Jul-12 23:37
professionalMycroft Holmes5-Jul-12 23:37 
QuestionCopy stored procedures to another database why not? Pin
Member 24584675-Jul-12 17:34
Member 24584675-Jul-12 17:34 
AnswerRe: Copy stored procedures to another database why not? PinPopular
Mycroft Holmes5-Jul-12 17:52
professionalMycroft Holmes5-Jul-12 17:52 
GeneralRe: Copy stored procedures to another database why not? Pin
Member 24584679-Jul-12 18:08
Member 24584679-Jul-12 18:08 
GeneralRe: Copy stored procedures to another database why not? Pin
Mycroft Holmes9-Jul-12 19:13
professionalMycroft Holmes9-Jul-12 19:13 
Generalerror during update openquery Pin
mikcutu5-Jul-12 4:40
mikcutu5-Jul-12 4:40 
GeneralRe: error during update openquery Pin
Eddy Vluggen8-Jul-12 0:21
professionalEddy Vluggen8-Jul-12 0:21 
GeneralRe: error during update openquery Pin
mikcutu9-Jul-12 5:49
mikcutu9-Jul-12 5:49 
Questionintegrate data of some DB into ome, how to? Pin
hs_rostami2-Jul-12 21:31
hs_rostami2-Jul-12 21:31 
AnswerRe: integrate data of some DB into ome, how to? Pin
Mycroft Holmes2-Jul-12 21:42
professionalMycroft Holmes2-Jul-12 21:42 
AnswerRe: integrate data of some DB into ome, how to? Pin
Eddy Vluggen3-Jul-12 0:57
professionalEddy Vluggen3-Jul-12 0:57 
GeneralRe: integrate data of some DB into ome, how to? Pin
hs_rostami3-Jul-12 21:47
hs_rostami3-Jul-12 21:47 
AnswerRe: integrate data of some DB into ome, how to? Pin
Eddy Vluggen4-Jul-12 1:01
professionalEddy Vluggen4-Jul-12 1:01 
QuestionUsing float and like Pin
berba2-Jul-12 0:54
berba2-Jul-12 0:54 
AnswerRe: Using float and like Pin
Pete O'Hanlon2-Jul-12 2:52
mvePete O'Hanlon2-Jul-12 2:52 
GeneralRe: Using float and like Pin
PIEBALDconsult2-Jul-12 6:59
mvePIEBALDconsult2-Jul-12 6:59 
AnswerRe: Using float and like Pin
PIEBALDconsult2-Jul-12 7:04
mvePIEBALDconsult2-Jul-12 7:04 
QuestionHow to run a job daily in Oracle and Generate excel file Pin
Rocky2328-Jun-12 22:40
Rocky2328-Jun-12 22:40 
AnswerRe: How to run a job daily in Oracle and Generate excel file Pin
Eddy Vluggen29-Jun-12 3:15
professionalEddy Vluggen29-Jun-12 3:15 
AnswerRe: How to run a job daily in Oracle and Generate excel file Pin
jschell29-Jun-12 8:55
jschell29-Jun-12 8:55 
Questionhow to get select parameter too in input parameter in stored procedure Pin
Dhyanga28-Jun-12 6:14
Dhyanga28-Jun-12 6:14 
Hi I have a problem writing an query with select parameter as input paramter in the stored procedure.

SQL
CREATE PROCEDURE [dbo].[SelectItemList] 
	@ColName string,
	@ID int
	
AS
BEGIN TRANSACTION
	SELECT @ColName FROM ItemList where ID = @ID

COMMIT TRANSACTION


Is it possible something like this with select paramter also included in input paramter to the stored procedure?


Thanks in advance,
Dhyanga

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.