Joined
Last Seen
0 Reputation Points
Unknown Quality Score
No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
0 Endorsements
Ranked #72.9K
2 Posted Topics
Hi Guys, I have a script (vbs) that exports the contents of the database (SQL Server) generating an XML file, but he always brings with encoding UTF-16. Is there any way to change to ISO-8859-1 through exports? Or maybe in the XSL file? Here a piece of code that exports: …
Re: Date/Time query
Hi Dearjitu, The following function serves you need: [CODE] CREATE FUNCTION dbo.fn_RoundTimeToMinIncrement ( @TIME DATETIME , @MIN SMALLINT ) RETURNS DATETIME AS BEGIN /* Ensure minutes is a positive number */ SET @MIN = ABS(@MIN) IF @MIN > 1440 SET @MIN = 1440 /* We are going to separate the …
The End.
pv.vasconcelos