raghava231
Monday, 21 May 2012
Rename Column in Sql server
EXEC
sp_rename
'Employees.FName'
,
'FirstName'
,
'column'
Thursday, 17 May 2012
Query to see the changed SP or table name
select name,modify_date from sys.tables order by modify_date desc
select name,modify_date from sys.procedures order by modify_date desc
Monday, 14 May 2012
Adding content to the Ajax HTML Editor on load this comes with new line .
<he:Editor ID="edtComments" runat="server" Height="120px" Width="610px" AutoFocus="true"
NoScript="true" Content="Hi,<p>Please find blah blah blah.</p><p></p><p>Thanks and Regards</p><p></p><p> My Team</p>" />
Newer Posts
Older Posts
Home
Subscribe to:
Comments (Atom)