here is good article..
CLICK HERE
Tuesday, October 5, 2010
Thursday, September 30, 2010
Line Delimiter, Line Ending in different system
unix = lines end with LF = char(10)
dos = lines end with CR LF = char(13)
mac = lines end with CR = char(13)
dos = lines end with CR LF = char(13)
mac = lines end with CR = char(13)
Friday, September 17, 2010
DELETE Duplicate, SQL, Mark Duplicate
WITH CTE AS
(
SELECT MyStatus,ROW_NUMBER() OVER
(PARTITION BY [EmployeeID]
Order BY [EmployeeID] )
AS RowNumber,
[EmployeeID]
FROM [dbo].MYTABLE tbl )
--DELETE FROM CTE Where RowNumber > 1
--SELECT * FROM CTE Where RowNumber > 1
update CTE set eligstatus='DP'
where RowNumber > 1
GO
(
SELECT MyStatus,ROW_NUMBER() OVER
(PARTITION BY [EmployeeID]
Order BY [EmployeeID] )
AS RowNumber,
[EmployeeID]
FROM [dbo].MYTABLE tbl )
--DELETE FROM CTE Where RowNumber > 1
--SELECT * FROM CTE Where RowNumber > 1
update CTE set eligstatus='DP'
where RowNumber > 1
GO
Wednesday, September 15, 2010
Where to Buy a Home ??
http://realestate.yahoo.com/promo/where-to-buy-a-home-for-less-than-800-a-month
Wednesday, September 8, 2010
5 Common Misdiagnoses - Importent!!
http://health.yahoo.net/rodale/MH/5-common-misdiagnoses-for-men
good article ;)
good article ;)
Sunday, August 8, 2010
8 ways to earn extra money
http://www.theworkbuzz.com/job-search/8-ways-to-earn-extra-cash/?cobrand=msn&siteid=cbmsnmnbuzz>1=23000
Saturday, August 7, 2010
good articles on fixed floating hybrid rate
http://business.rediff.com/slide-show/2010/aug/04/slide-show-1-fixed-or-floating-or-hybrid-home-loan.htm#contentTop
Subscribe to:
Posts (Atom)