Click here to Skip to main content
15,888,320 members
Home / Discussions / Database
   

Database

 
GeneralRe: SQL Express Redistribution Pin
εїзεїзεїз19-Feb-11 18:30
εїзεїзεїз19-Feb-11 18:30 
QuestionInsert Record into Access Pin
Brad Fackrell18-Feb-11 4:52
Brad Fackrell18-Feb-11 4:52 
AnswerRe: Insert Record into Access Pin
Luc Pattyn18-Feb-11 5:23
sitebuilderLuc Pattyn18-Feb-11 5:23 
GeneralRe: Insert Record into Access Pin
Brad Fackrell18-Feb-11 5:41
Brad Fackrell18-Feb-11 5:41 
GeneralRe: Insert Record into Access Pin
Wendelius18-Feb-11 5:42
mentorWendelius18-Feb-11 5:42 
AnswerRe: Insert Record into Access Pin
Wendelius18-Feb-11 5:26
mentorWendelius18-Feb-11 5:26 
GeneralRe: Insert Record into Access Pin
Brad Fackrell18-Feb-11 5:45
Brad Fackrell18-Feb-11 5:45 
QuestionHi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure [modified] Pin
Thabo@Codeproject18-Feb-11 4:52
Thabo@Codeproject18-Feb-11 4:52 
This is the senario, i am trying to copy a table and store that table into a XML variable(Not physically xml file) and read that XML variable ,at the same time also trying to retrive and insert all data to another table.The stored procedure is given below
set ANSI_NULLS ON
set QUOTED_IDENTIFIER ON
GO
-- =============================================
-- Author:     Thabo
-- Create date: 18.02.2011
-- Description:	TEST XML
-- =============================================
CREATE PROCEDURE sppassingStoredProcedue
	 DECLARE @x XML 
AS
BEGIN

SET NOCOUNT ON;
SET @x=(SELECT PramryKeyForThisTable,AutoNumberColumn,Data1,Data2,Data3 FROM tblInsertTableForAutoNumber FOR XML AUTO ,TYPE ,ELEMENTS XSINIL,ROOT ('TABLEROOT'))

INSERT INTO CopyOftblInserTableForAutonumber
SELECT
	tab.col.value('@PrimaryKeyForThisTable[1]','SMALLINT') AS PramryKeyForThisTable,
	tab.col.value('@AutoNumberColumn[1]','SMALLINT')AS AutoNumberColumn,
	tab.col.value('@Data1[1]','VARCHAR(50)') AS Data1,
	tab.col.value('@Data2[1]','VARCHAR(50)') AS Data2,
	tab.col.value('@Data3[1]','VARCHAR(50)') AS Data3
FROM @x.nodes('//TABLEROOT/tblInsertTableForAutoNumber')AS tab(Col)	
	
END


Actually the second table is the copy of the first table.It has same stucure of the first table
The table structure is,

colum name datatype
----------- --------
PramryKeyForThisTable smallint
AutoNumberColumn smallint
Data1 varchar(50)
Data2 varchar(50)
Data3 varchar(50)


I have got different different error messages every time.i hve got this error message for above cording.
Msg 156, Level 15, State 1, Procedure sppassingStoredProcedue, Line 7
Incorrect syntax near the keyword 'DECLARE'.
Msg 156, Level 15, State 1, Procedure sppassingStoredProcedue, Line 8
Incorrect syntax near the keyword 'AS'."


I couldnt figure out how to do this. Can any one pls give a good solution for this.

Thabo


-- Modified Friday, February 18, 2011 11:33 AM

AnswerRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Wendelius18-Feb-11 5:21
mentorWendelius18-Feb-11 5:21 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Thabo@Codeproject18-Feb-11 5:54
Thabo@Codeproject18-Feb-11 5:54 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Wendelius18-Feb-11 6:22
mentorWendelius18-Feb-11 6:22 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Thabo@Codeproject23-Feb-11 9:02
Thabo@Codeproject23-Feb-11 9:02 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Wendelius24-Feb-11 10:43
mentorWendelius24-Feb-11 10:43 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Thabo@Codeproject9-Mar-11 9:13
Thabo@Codeproject9-Mar-11 9:13 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Wendelius9-Mar-11 11:25
mentorWendelius9-Mar-11 11:25 
AnswerRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Luc Pattyn18-Feb-11 5:24
sitebuilderLuc Pattyn18-Feb-11 5:24 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Thabo@Codeproject18-Feb-11 5:39
Thabo@Codeproject18-Feb-11 5:39 
GeneralRe: Hi everyone i am a new comer for this forum ,I have a small problem with format the xml to a table in SQL SERVER stored procedure Pin
Luc Pattyn18-Feb-11 5:45
sitebuilderLuc Pattyn18-Feb-11 5:45 
QuestionHow to get a specified number of records centered on a specific record in T-SQL Pin
Member 225653318-Feb-11 4:42
Member 225653318-Feb-11 4:42 
AnswerRe: How to get a specified number of records centered on a specific record in T-SQL Pin
Wendelius18-Feb-11 5:13
mentorWendelius18-Feb-11 5:13 
GeneralHave you seen a sql tool? [modified] Pin
Tomz_KV18-Feb-11 2:42
Tomz_KV18-Feb-11 2:42 
GeneralRe: Have you seen a sql tool? Pin
Henry Minute18-Feb-11 2:45
Henry Minute18-Feb-11 2:45 
GeneralRe: Have you seen a sql tool? Pin
Brady Kelly18-Feb-11 2:50
Brady Kelly18-Feb-11 2:50 
GeneralRe: Have you seen a sql tool? Pin
Henry Minute18-Feb-11 2:52
Henry Minute18-Feb-11 2:52 
GeneralRe: Have you seen a sql tool? Pin
Tomz_KV18-Feb-11 2:50
Tomz_KV18-Feb-11 2:50 

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.