February 23, 2009 at 11:19 am
all of the sudden today, code that i paste between {code} {/code} blocks (with square brackets) are losing their CrFl--newline whatever in them;
anyone know if there was a change to the editor?
if i preview before posting, it looks fine, but the final post loses then:
example:
--for users who are too lazy to type "SELECT * FROM"
CREATE procedure sp_show
--USAGE: sp_show gmact
@TblName varchar(128)
--WITH ENCRYPTION
As
Begin
exec('Select * from ' + @TblName)
End
--for users who are too lazy to type "SELECT * FROM"
CREATE procedure sp_show
--USAGE: sp_show gmact
@TblName varchar(128)
--WITH ENCRYPTION
As
Begin
exec('Select * from ' + @TblName)
End
or
[font="Courier New"]--for users who are too lazy to type "SELECT * FROM"
CREATE PROCEDURE sp_show
--USAGE: sp_show gmact
@TblName VARCHAR(128)
--WITH ENCRYPTION
AS
BEGIN
EXEC('Select * from ' + @TblName)
END [/font]
Lowell
February 23, 2009 at 11:38 am
Well that stinks.
Code test from here:
select *
from myTable
where Mycol = "test"
February 23, 2009 at 12:03 pm
Looks OK to me. (Or has it been fixed already?)
[font="Times New Roman"]-- RBarryYoung[/font], [font="Times New Roman"] (302)375-0451[/font] blog: MovingSQL.com, Twitter: @RBarryYoung[font="Arial Black"]
Proactive Performance Solutions, Inc. [/font][font="Verdana"] "Performance is our middle name."[/font]
February 23, 2009 at 12:17 pm
yes it's fixed...my original posts had only single line that stretched a million characters....Steve's all over it apparently.
Lowell
February 23, 2009 at 12:30 pm
I think I fixed it. There was a compression setting we were playing with to remove whitespace. Apparently it whacked the line feeds.
Viewing 5 posts - 1 through 4 (of 4 total)
You must be logged in to reply to this topic. Login to reply