Look up local businesses on your online Android device through Eye4U application.This
application will allow you to search anything within categories and
helps to easily locate local businesses/services on Google map and show
you the navigation directions to reach at Selectedlocation.
Wednesday 31 December 2014
Thursday 3 April 2014
Rounding time to nearest five minutes - SQL Server
We recently came across a small problem of rounding time to nearest five minutes, so in simple terms 10:41~10:42 becomes 10:40 and 10:43~10:44 becomes 10:45 and so on, and when time is 10:40 or 10:45 no change has to happen in the time result.
We came up with the script below to solve our issue, its a short SQL Server script that took care of things, we would like to share this with you.
We came up with the script below to solve our issue, its a short SQL Server script that took care of things, we would like to share this with you.
declare @Time datetime select @time = SYSDATETIME() Declare @RoundFactor Int Select @RoundFactor= DATEPART(minute, @Time)% 5 -- Getting Mod of minutes and 5 If @RoundFactor>=3 -- Computing nearest rounding number BEGIN Select @RoundFactor = 5-@RoundFactor END ELSE BEGIN Select @RoundFactor= -DATEPART(minute, @Time)% 5 END
Thursday 20 February 2014
Thursday 23 January 2014
Android Application Development In Zirakpur
Subscribe to:
Posts (Atom)
How to get code from a published ASP.Net build where we don't have source code?
If you have ever lost or misplaced your source code for an ASP.Net web application, you might wonder if there is a way to recover it from th...

-
Anthem Infotech Provides best Web Designing Services in zirakpur anthem Infotech offer web designing services either as part of a big ...
-
Secure Your SMS Backup with just install Android application from your phone. Restore your sms backup with Anthem SMS secure Backup . N...
-
If you have ever lost or misplaced your source code for an ASP.Net web application, you might wonder if there is a way to recover it from th...