Viewing 2 posts - 1 through 2 (of 2 total)
Hi All,
I have tried to change the "language" from report properties to French for the report label but while previewing the same it does not reflect the changes in the...
February 18, 2009 at 12:06 am
#945692
You can declare a variable with varchar(8000) and use only exec statement.
For example:
DECLARE @sql varchar(8000)
set @sql = 'Your String'
exec (@sql)
let me know whether it...
February 12, 2009 at 12:15 am
#942640