C# Tutorials and offshore development in India
    Tutorials   Resources   Forum   Reviews   Communities   Interview   Jobs   Projects   Training   Your Ad Here    
Silverlight Games | Mentor | Code Converter | Articles | Code Factory | Computer Jokes | Members | Peer Appraisal | IT Companies | Bookmarks | Polls | Revenue Sharing | Lobby | Gift Shop |


Prizes & Awards
My Profile



Active Members
TodayLast 7 Days more...






Resources » Articles » Databases »

Time Conversion GMT to Current Time and Back


Posted Date: 10 Jun 2004    Resource Type: Articles    Category: Databases
Author: PPG Dinesh AsankaMember Level: Bronze    
Rating: 1 out of 5Points: 10



When you're working in several time zones, you need to save date values in a common format—the most obvious one being GMT. The following stored procedures store datetime in GMT and retrieve date in current PC datetime.

/*Convert Datetime to GMT
Time Format
Author :PPG Dinesh Asanka
Date :2003-08-23
*/

CREATE PROCEDURE [dbo].[Convert_DateTime_to_GMT]
@dt_Date_Time as datetime
AS
select DATEADD ( hh , (DATEDIFF ( hh , GetDate(), GetUTCDate() )) ,
@dt_Date_Time )
GO

/*Convert GMT to Datetime
Time Format
Author :PPG Dinesh Asanka
Date :2003-08-23
*/

CREATE PROCEDURE [dbo].[Convert_GMT_to_DateTime]
@dt_GMT as datetime
AS
select DATEADD ( hh , (DATEDIFF ( hh , GetUTCDate(),GetDate() )) ,
@dt_GMT )
GO

Heres a sample:

declare @dt nvarchar(20)
Select @dt = cast('2003/10/12 13:12' as datetime)
exec Convert_GMT_to_DateTime @dt



Responses

Author: Sankaranarayanan.M    26 Jul 2004Member Level: Bronze   Points : 0
Fine to see the topic about date problem.Really a little bit problamatic in programming with date.yeah i'll surely check out this option and i'll give the feed back with brief explanation
Thankz
sankarM


Feedbacks      
Popular Tags   What are tags ?   Search Tags  
Sign In to add tags.
(No tags found.)

Post Feedback


This is a strictly moderated forum. Only approved messages will appear in the site. Please use 'Spell Check' in Google toolbar before you submit.
You must Sign In to post a response.
Next Resource: Modifying the Column Information using T_SQL Commands
Previous Resource: Generate Next Numbers with SQLServer
Return to Discussion Resource Index
Post New Resource
Category: Databases


Post resources and earn money!
 
More Resources



dotNet Slackers

About Us    Contact Us    Privacy Policy    Terms Of Use