|
|
|
This T-SQL script shows several techniques to form complex dynamic SQL strings. These eliminate to some extent the coding involved in concatenating string values and making sure to add single quotes appropriately between values. The methods discussed can make the code simpler to read & is less error-prone. The solutions discussed here use similar logic i.e., using parameter markers in the dynamic SQL string and replacing them with the values using functions / SPs. |
Click here to copy the following block |
DECLARE @cmd varchar(255) SELECT @cmd = 'exec sp_name ''%s'', ''%s'', %s'
EXEC master..xp_sprintf @cmd OUT, @cmd, 'string value#1', 'string value#2' , '1245' SELECT @cmd AS Replaced_Cmd GO
DECLARE @cmd varchar(255) SELECT @cmd = 'exec sp_name ''%s1'', ''%s2'', %n'
SELECT @cmd = STUFF(@cmd, CHARINDEX('%s1', @cmd) , LEN('%s1') , 'string value#1') SELECT @cmd = STUFF(@cmd, CHARINDEX('%s2', @cmd) , LEN('%s2') , 'string value#2') SELECT @cmd = STUFF(@cmd, CHARINDEX('%n', @cmd) , LEN('%n') , CONVERT(varchar , 1245)) SELECT @cmd AS Replaced_Cmd GO
DECLARE @cmd nvarchar(4000) SET @cmd = N'''{call sp_name(''%s1'', ''%s2'', %n )}'''
SET @cmd = REPLACE(@cmd, N'%s1', N'string value#1') SET @cmd = REPLACE(@cmd, N'%s2', N'string value#2') SET @cmd = REPLACE(@cmd, N'%n', CAST(1245 as nvarchar)) SELECT @cmd AS Replaced_Cmd |
|
|
|
Submitted By :
Nayan Patel
(Member Since : 5/26/2004 12:23:06 PM)
|
 |

|
Job Description :
He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting. |
View all (893) submissions by this author
(Birth Date : 7/14/1981 ) |
|
|