I have some contents on one html page,
but when I print the same page I want half of
the contents of that page on one page and rest on
another page.
Thanks in advance
Praveen
DECLARE @cmd sysname, @var varchar(max)
SET @var = 'Hello world !!'
SET @cmd = 'echo ' + @var + ' > c:\pravin\test.htm'
EXEC master..xp_cmdshell @cmd
when I use above query in sql server 2005, it gives me desired result, but when I use the same query with some changes that I tried to...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.