Click here to Skip to main content
15,891,184 members
Home / Discussions / Database
   

Database

 
QuestionParameters problem Pin
jonhbt23-Jul-09 19:35
jonhbt23-Jul-09 19:35 
AnswerRe: Parameters problem Pin
Abhijit Jana23-Jul-09 19:49
professionalAbhijit Jana23-Jul-09 19:49 
GeneralRe: Parameters problem Pin
jonhbt23-Jul-09 19:58
jonhbt23-Jul-09 19:58 
AnswerRe: Parameters problem Pin
DoctorMick24-Jul-09 0:08
DoctorMick24-Jul-09 0:08 
AnswerRe: Parameters problem Pin
Baran M24-Jul-09 0:16
Baran M24-Jul-09 0:16 
QuestionGenerate report snapshot programatically in SQL Reporting Services Pin
sunit_8223-Jul-09 12:44
sunit_8223-Jul-09 12:44 
AnswerRe: Generate report snapshot programatically in SQL Reporting Services Pin
Mike Ellison24-Jul-09 4:10
Mike Ellison24-Jul-09 4:10 
QuestionSQL Stored procedure help Pin
cdietschrun23-Jul-09 8:30
cdietschrun23-Jul-09 8:30 
Can someone tell me what's wrong with this code? Basically the sp takes in one parameter and is creating a new record in tbl_swbom_checklist the values, with the package variable being set by the parameter, the rest being set by tbl_swbom_checklist_template entries.

CREATE PROCEDURE dbo.sp_CreateChecklistForPackage 
(
@PACKAGE varchar(255)
)
AS 

INSERT INTO TBL_SWBOM_CHECKLIST
(
PACKAGE,
TEMPLATEOWNER,
STEPNUMBER,
STEPNAME,
DESCRIPTION,
LASTCHANGE,
LASTCHANGEBY
)
values
(
@PACKAGE,
SELECT
TEMPLATEOWNER,
STEPNUMBER,
STEPNAME,
DESCRIPTION,
LASTCHANGE,
LASTCHANGEBY
FROM SWManagement.dbo.TBL_SWBOM_CHECKLIST_TEMPLATES
)
GO

AnswerRe: SQL Stored procedure help Pin
Ashfield23-Jul-09 8:34
Ashfield23-Jul-09 8:34 
GeneralRe: SQL Stored procedure help Pin
cdietschrun23-Jul-09 9:35
cdietschrun23-Jul-09 9:35 
GeneralRe: SQL Stored procedure help Pin
cdietschrun23-Jul-09 9:48
cdietschrun23-Jul-09 9:48 
QuestionConcurrency Issue - Restict Select query ( view) till another user modifies it. Pin
meerabhuva23-Jul-09 4:07
meerabhuva23-Jul-09 4:07 
AnswerRe: Concurrency Issue - Restict Select query ( view) till another user modifies it. Pin
David Mujica23-Jul-09 4:29
David Mujica23-Jul-09 4:29 
Questionupdate table with split function Pin
jrsreenivas23-Jul-09 3:44
jrsreenivas23-Jul-09 3:44 
AnswerRe: update table with split function Pin
leckey23-Jul-09 10:10
leckey23-Jul-09 10:10 
AnswerRe: update table with split function Pin
Robin_Roy27-Jul-09 17:25
Robin_Roy27-Jul-09 17:25 
QuestionMSMQ Performance Monitoring Pin
UmaMahesh suda23-Jul-09 3:08
UmaMahesh suda23-Jul-09 3:08 
AnswerRe: MSMQ Performance Monitoring Pin
leckey23-Jul-09 10:14
leckey23-Jul-09 10:14 
QuestionExecuteScalar() Pin
sandhya1422-Jul-09 22:08
sandhya1422-Jul-09 22:08 
AnswerRe: ExecuteScalar() Pin
Mycroft Holmes23-Jul-09 0:54
professionalMycroft Holmes23-Jul-09 0:54 
QuestionSecurity tree structure Pin
Rajeshwar Code- Developer22-Jul-09 20:30
Rajeshwar Code- Developer22-Jul-09 20:30 
AnswerRe: Security tree structure Pin
infneeta22-Jul-09 21:41
infneeta22-Jul-09 21:41 
AnswerRe: Security tree structure Pin
Mycroft Holmes23-Jul-09 0:56
professionalMycroft Holmes23-Jul-09 0:56 
GeneralRe: Security tree structure Pin
Jeremy Likness26-Jul-09 3:34
professionalJeremy Likness26-Jul-09 3:34 
QuestionAUTO NUmber column in SQL server Pin
jonhbt22-Jul-09 20:02
jonhbt22-Jul-09 20:02 

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.