I want some Moore
Blog about stuff and things and stuff...
mostly about SQL server and .Net
posts - 158, comments - 1438, trackbacks - 33
My Links
Home
Contact
Login
SQLTeam.com Links
SQLTeam.com Articles
SQLTeam.com Weblog
SQLTeam.com Forums
News
Hi! My name is
Mladen Prajdić
I'm from
Slovenia
and I'm currently working as a .Net (C#) and SQL Server developer. I'm also a MCP and MCTS for SQL Server.
Welcome to my blog.
Search this Blog
Users Online:
Article Categories
.Net
Exchange
SQL Server
Archives
August, 2008 (2)
July, 2008 (3)
May, 2008 (4)
April, 2008 (1)
February, 2008 (5)
January, 2008 (3)
December, 2007 (4)
November, 2007 (5)
October, 2007 (6)
September, 2007 (6)
August, 2007 (10)
July, 2007 (9)
June, 2007 (8)
May, 2007 (9)
April, 2007 (5)
March, 2007 (7)
February, 2007 (6)
January, 2007 (6)
December, 2006 (6)
November, 2006 (7)
October, 2006 (4)
September, 2006 (4)
August, 2006 (2)
July, 2006 (7)
June, 2006 (7)
May, 2006 (5)
April, 2006 (7)
March, 2006 (2)
August, 2005 (3)
March, 2005 (1)
February, 2005 (1)
November, 2004 (3)
Post Categories
.Net
(rss)
Back to Basics
(rss)
Exchange
(rss)
Misc
(rss)
Reviews
(rss)
SQL Server
(rss)
Work Conditions
(rss)
Cool software
AForge.NET
SSMS Tools Pack
Other Blogs
David Vidmar - plenty of useful stuff
(rss)
Dejan Sarka - Slovenian SQL Server MVP
(rss)
Matija Lah - Slovenian SQL Server MVP
(rss)
Miha Markič - Slovenian C# MVP
(rss)
SQL Server Storage Engine Team's Blog
(rss)
SqlBlog.com roller
(rss)
Other stuff
Aikido
Channel 9
New Scientist
User friendly
SQL stuff
SQL Security
SQL Server Central
<< Extended SQL Server Ceiling and Floor functions
|
Home
|
Blittable - now that's a word! >>
Converting TSQL/C#/VB Code to HTML
you paste the code you want to display on the page and it creates the color coded html. preety cool...
http://www.manoli.net/csharpformat/
there's even a source of the app that does the convert that you can view.
Print
| posted on Saturday, April 08, 2006 1:49 PM
Feedback
#
re: Converting TSQL/C#/VB Code to HTML
Good link ... very nice find!
- Jeff
4/11/2006 4:41 PM |
Jeff
#
re: Converting TSQL/C#/VB Code to HTML
SELECT r.rollout_id,
r.ROLLOUT_TYPE,
r.rollback_from,
r.description,
r.rollout_plan_ticket,
r.parent_rollout_id,
r.machines_so_far,
r.machines_to_roll,
r.HAS_STARTED_ROLLBACK,
r.skip_staging,
r.skip_approval,
r.skip_qa,
r.build_label,
r.force_rollout,
r.train_number,
r.build_number_code,
bd1.code_value as code_tag,
r.build_number_xsl,
bd2.code_value as xsl_tag,
r.TC_ID,
cu.email as conductor_login,
cu.first_name as conductor_f,
cu.last_name as conductor_l,
r.RE_ID,
ru.email as release_login,
ru.first_name as release_f,
ru.last_name as release_l,
r.start_time,
r.include_machine_list,
r.exclude_machine_list,
r.rollout_command,
r.rollback_command,
r.rollout_command2,
r.rollback_command2,
r.rollout_success_match,
r.rollback_success_match,
r.status_id,
rs.status_name,
r.plan_id,
pl.plan_name,
r. pool_id,
p.DELIVERABLE_NAME,
p.cal_pool_name,
p.pool_type_id,
r.LAST_MODIFIED_DATE,
p.staging_timeout,
p.runtask_timeout,
p.odb_name,
p.qa_approval_req,
pt.pool_category,
val.TASK_COMMAND
FROM tr2_build_detail bd1,
tr2_build_detail bd2,
tr2_rollout r,
tr2_rollout_status rs,
tr2_plan pl,
tr2_pool p,
tr2_user cu,
tr2_user ru,
tr2_pool_type pt,
TR2_POOL_TASK val,
TR2_TASK task
WHERE (rs.status_id(+) = r.status_id) AND (pl.plan_id(+) = r.plan_id) AND
(p.pool_id(+) = r.pool_id) AND (cu.user_id = r.TC_ID) AND
(ru.user_id = r.RE_ID) AND
(bd1.build_number(+) = r.build_number_code) AND
(bd2.build_number(+) = r.build_number_xsl) AND
(pt.pool_type_id(+) = p.pool_type_id) AND
(val.pool_id(+) = p.pool_id) AND (task.task_id(+) = val.task_id) AND
(task.task_name = 'ValidateInternals' or task.task_name is null) AND
(r.parent_rollout_id = 0 or r.parent_rollout_id = null) AND
r.status_id =
(select status_id from tr2_rollout_status where status_name = :1) AND
r.start_time > :2 AND cu.email = :3
4/20/2006 2:22 AM |
Jay
#
re: Converting TSQL/C#/VB Code to HTML
and the point of this select is?
4/20/2006 11:11 AM |
Mladen
Post Comment
Title
Name
Email
Url
Comment
Remember Me?
Please add 2 and 4 and type the answer here:
Enter the code shown above:
Powered by:
Copyright © Mladen Prajdić