developer155
Programmer
When I create a table like this
CREATE TABLE #Temp
(
temp1 text
) and then select from it
like this
select convert(varchar(1900),temp1) from #Temp
I get dashes as the first line
-----------------------------------------
I do not insert them into the table. Where do they come from and how to get rid of them? I am using the table to create XML file out of a query and I do not need these dashes
thanks for any help!!!
CREATE TABLE #Temp
(
temp1 text
) and then select from it
like this
select convert(varchar(1900),temp1) from #Temp
I get dashes as the first line
-----------------------------------------
I do not insert them into the table. Where do they come from and how to get rid of them? I am using the table to create XML file out of a query and I do not need these dashes
thanks for any help!!!