Showing posts with label Useful Tips. Show all posts
Showing posts with label Useful Tips. Show all posts

Sunday, April 18, 2010

JavaScript debugger

To debug a page with javascript, you can use firebug:

https://addons.mozilla.org/pt-BR/firefox/addon/1843

According to my friend MMs, it's really a God's thing!

Wednesday, September 16, 2009

How do I rename a column using SQL Server?

It's very easy to rename a column using SQL Server:

sp_rename 'table.old_column_name', 'new_column_name'

very simple, isn't it?