Adding Milliseconds To Time

Nov 19, 2004

Hi,


i am trying to add milliseconds to a time. For example if i have a time of 01:01:05:000 and i want to add 0.297 milliseconds to it i use the following simplified query








SELECT CONVERT(nvarchar(20), DATEADD(ms, 0.297, '00:01:05:000'), 14) AS Expr1








However instead of getting 01:01:05:0.297 i get 01:01:05:000. Can somebody please tell me what i am doing wrong.





Thanks in advance.

View 4 Replies


ADVERTISEMENT

Adding Milliseconds To Time

Nov 19, 2004

Hi,
i am trying to add milliseconds to a time. For example if i have a time of 01:01:05:000 and i want to add 0.297 milliseconds to it i use the following simplified query


Code:


SELECT CONVERT(nvarchar(20), DATEADD(ms, 0.297, '00:01:05:000'), 14) AS Expr1



However instead of getting 01:01:05:0.297 i get 01:01:05:000. Can somebody please tell me what i am doing wrong.

Thanks in advance.

View 2 Replies View Related

SSIS And Time With Milliseconds

May 22, 2007

I've been working on a project to ensure that accross our entire data warehouse everything is at the same accuracy level as far as time - migrating everything to use the full hh:mis.mmm. Some places were using hh:mis:mmm (colon instead of decimal point) and many places not using milliseconds.



The SQL server portion went essentially without issue - however SSIS is not cooperating. For example I have data I am importing from a file that is in format: hh:mis (no milliseconds) that I need to compare to data from SQL (now containing full milliseconds) - matching on time ranges. Previously this was done by converting both to the "database time" datatype in SSIS and comparing. Now when converting the cTime to database time SSIS fails and complains "The value could not be converted because of a potential loss of data".



I don't want to lop off the milliseconds becuase that could create rounding errors.



I don't like it but the only option I can think of is keeping everything in string and comparing the strings... then I run into the issue of making sure to convert all sources of data into the exact same hh:mis:mmm format in text.



Is there an easier way? I know some people use "milliseconds since midnight" and so forth but that would require major reworking of the data warehouse and many packages.

View 7 Replies View Related

Transact SQL :: Lockout Time In Milliseconds

Dec 1, 2015

why does select @@lock_timeout return -1. Shouldn't this return lock timeout in milliseconds?

View 2 Replies View Related

Set A Variable To Datetime And Time To Exact Milliseconds In SQL Server In Stored Procedure AS A Single String

Nov 1, 2007

I need to set a variable to datetime and time to exact milliseconds in SQL server in stored procedure.
 
Example:
set  MyUniqueNumber = 20071101190708733
ie. MyUniqueNumber contains yyyymmddhhminsecms
 
Please help, i tried  the following:
1. SELECT CURRENT_TIMESTAMP; ////// shows up with - & : , I want single string as in above example.2.
select cast(datepart(YYYY,getdate()) as varchar(4))+cast(datepart(mm,getdate()) as char(2))+convert(varchar(2),datepart(dd,getdate()),101 )+cast(datepart(hh,getdate()) as char(2))+cast(datepart(mi,getdate()) as char(2))+cast(datepart(ss,getdate()) as char(2))+cast(datepart(ms,getdate()) as char(4))
 
This one doesnot display day correctly, it should show 01 but shows 1
 
 
 
 

View 2 Replies View Related

Adding Time To Rank

Feb 27, 2004

Using FoodMart, how can i add time to this:

WITH MEMBER [Measures].[Rank] AS 'Rank ( Product.CurrentMember,Order( {Product.CurrentMember.Parent.Children} ,[Profit], DESC) ) '
SELECT
{[Profit] , [Rank]} ON COLUMNS,
Drink.Children ON ROWS
FROM Sales

View 2 Replies View Related

Adding Time Totals In SQL

Dec 12, 2005

I am trying to get a total for times, but I am having trouble gettinganything to work. Basically I created a query to pull up severalpeople's name that performed certain details and how long each detailwas. I now want to add up all the hours to a total for each person. Cananyone point me in the right direction?*** Sent via Developersdex http://www.developersdex.com ***

View 2 Replies View Related

Adding Columns With Different Time Unit

Oct 29, 2014

I have three different columns, hour(s), min(s), sec(s)

I can add it up, but will like to convert it into. hrs, mins and sec.

this is how, i am adding it up into seconds.

SELECT ((TotalTimeSpentHrs*60*60)+(TotalTimeSpentMin*60)+(TotalTimeSpentSec))AS totaltime
FROM EST1

How can I convert the total seconds, so that i can input the result in a new column.

View 1 Replies View Related

Adding A Time Stamp To The Records

Jul 20, 2005

I have a shopping cart that will get full from time to time becausecustomers click out of the site before they confirm their purchase,therefore leaving a full cart behind. I'd like to have a timestamp onthis table, so that I can delete anything that I find is more than a dayold.How can I do this?Thanks,Bill*** Sent via Developersdex http://www.developersdex.com ***Don't just participate in USENET...get rewarded for it!

View 1 Replies View Related

Adding Entry To DB And Getting Unique ID At The Same Time

Jul 20, 2005

Hi all,I'm writing a website with Cold Fusion and when a user submits arequest and it's stored in the MS SQL database, I want the unique ID(Identity field in table) to be given to the user on screen plusemailed to user.Now can I store data to the database (where the ID is created) andreturn this as a variable in the same statement? I've seen this doneon many websites, but I have no idea how to do it in one step.Thanks,Alex.

View 1 Replies View Related

Adding Integer Value To Date Time

Aug 4, 2015

I am trying to add integer value to the datetime to get the configurable "date".But it is not working out. Here is the code for it.

declare @Id int;
exec @Id = up_GetConfigurableDayInterval
print getdate() + @Id

The sp "up_GetConfigurableDayInterval", will return number of days to add the the current date time. But print getdate() + @Id , is not producing the updated result.But when ever i have replaced the variable "@Id" with a value, Say "5", it is producing the expected result.I have also tested the above code by the following:-

create table Temp(value datetime);
insert into Temp values(getdate() + @Id);
select * from Temp

But it is not having the new added datetime.

View 12 Replies View Related

Adding The Same Column To A Model More Than One Time

Jan 11, 2007

I know that I can add a column to a mining structure and/or model more than once using XMLA.  However, I am having a problem doing the same using DMX.  I now that DMX does not support data binding and that it relies on the INSERT INTO... construct to essentially map the structure columns to the incoming comluns from the data source.  I tried to use "AS" like I would in SQL but it doesn't seem to like it. 

Can anyone confirm that this can only be done using XMLA and not DMX?  If I am mistaken, it would be greatly appreciated if you could provide  an example on how to do this using DMX.

For background on why I would want to add the same column to a model more than once please read this post.

Thanks.

View 3 Replies View Related

Adding Half Hour Intervals To Time

Oct 6, 2014

I have data that looks like the following.

ID Date Time Length Interval_Num
1 10/11/2014 9:00 420 14

Basically, length represents the # of minutes a person is scheduled for. We have 30 minute intervals. Interval_Num = (Length/30). I need the data to show each interval. For the above example it should only be 14 intervals.For the above example the solution should look like....

ID Date Time Length
1 10/11/2014 9:00 30
1 10/11/2014 9:30 30
1 10/11/2014 10:00 30
1 10/11/2014 10:30 30

for 14 intervals up until 16:00

View 4 Replies View Related

Adding Date And Time To Backup File???

Oct 30, 2006

Hello all. I was just wondering how I could add the current date and time to the name of the .bak file. I perform a full backup daily and would like to keep a weeks worth of backups, but everytime I run the job, it just overites the previous one.

The command in the wizzard is:

BACKUP DATABASE [snl] TO DISK = N'C:Backups_for_FTPSNL_Full.bak' WITH NOINIT , NOUNLOAD , NAME = N'snl backup', SKIP , STATS = 10, DESCRIPTION = N'SNL Backup', NOFORMAT

Thanks,

Parallon

View 2 Replies View Related

Adding Hours Between Each Time Block Stored In A Database?

Feb 26, 2013

I am trying to add the hours between each time block stored in a database.

In this database a user enters the begin time and the end time. For example the course MATH0001 would start at 8am and end at 10am. Therefore the user would enter 0810 in the start field and 1000 in the end field. The course MATH0001 doesn't run the entire semester it may only run from 8th Jan - 15th March and the course is scheduled in a room called GR4. Now because a course can be scheduled modularly, one room could have several courses scheduled in this manner.

The problem: I need to find out how many hours GR4 is used but it contains the following courses

Code:
Schedule for room called GR4
Course StartDate EndDate BeginTime EndTime HoursPerClass
MATH0001 06-FEB-13 19-FEB-13 0810 1700 9
MATH0002 20-FEB-13 04-Mar-13 0810 1700 9
MATH0003 10-JAN-13 05-Feb-13 0810 1700 9
MATH0004 22-APR-13 17-May-13 0810 1700 9
MATH0005 08-MAR-13 21-APR-13 0810 1700 9
MATH0006 07-JAN-13 09-JAN-13 0910 1300 4
MATH0007 20-JAN-13 17-MAY-13 1710 2000 3
MATH0008 08-JAN-13 18-JAN-13 1710 2000 3

A day only has 13 hours. Therefore the total hours spent in GR4 should be 12 hours. This is calculated by adding the hours between 8am and 5pm = 9 hours and 5pm an 8pm = 3 hours. I would not include 9am to 1pm because it is a subset of the 8am to 5pm slot.

Now, how to accomplish this but below is the code that i have thus far:

I forgot to mention that this code was to just test my 'final code' results and it outputs the table shown above. Anyway for testing purposes I have limited the search to the room GR4 and the day Tuesdays.

Code:
select DISTINCT ssrmeet_room_code,
ssrmeet_start_date,
ssrmeet_end_date,
ssrmeet_crn,
ssrmeet_begin_time,
ssrmeet_end_time,
(((CAST(M.SSRMEET_END_TIME AS INT))-(CAST(M.SSRMEET_BEGIN_TIME AS INT)))+10)/100 As HoursPerClass,

[code]....

View 2 Replies View Related

Reporting Services :: Adding Drill Through Parameters Increasing Rendering Time On Report Server

Nov 2, 2015

I have a report which takes around 5 seconds when run in BIDS but takes around 20 seconds when deployed on report server.Execution log says TimeDataRetrieval is around 3-4 seconds and  rendering time is around 15-17 secs.From this report I am passing 8 parameters to a  drill through report and there are 36 text boxes where I have defined these parameters for drill through action.All these parameters are populated in main dataset.When I deployed the same report without any drill through action and parameter, it takes 5 seconds.So I am suspecting that because of drill through parameters report is taking more rendering time on server.I am using 2008R2 and IE11.

Is it expected behavior that due to so many parameters for drill through action, report will take more rendering time?If yes, then why is it not taking same time in BIDS?

View 5 Replies View Related

Transact SQL :: Adding Count Before And After A Specific Time Doesn't Match Total Number Of Records

Nov 19, 2015

If I just use a simple select statement, I find that I have 8286 records within a specified date range.

If I use the select statement to pull records that were created from 5pm and later and then add it to another select statement with records created before 5pm, I get a different count: 7521 + 756 = 8277

Is there something I am doing incorrectly in the following sql?

DECLARE @startdate date = '03-06-2015'
DECLARE @enddate date = '10-31-2015'
DECLARE @afterTime time = '17:00'
SELECT
General_Count = (SELECT COUNT(*) as General FROM Unidata.CrumsTicket ct

[Code] ....

View 20 Replies View Related

Ignore Milliseconds

Mar 7, 2002

Hi
Does anybody know while loading data from text file into sql server, how
can we ignore milliseconds.

regards
JK

View 1 Replies View Related

Truncate Milliseconds

May 8, 2008

I have got data like this below in effective date column
2008-08-05 19:18:13.000
2008-08-05 19:17:10.000

Expected output:
2008-08-05 19:17:10

I need to truncate the milliseconds and insert the same into datetime column.

I tried as below
select convert(datetime,substring(convert(varchar,getdate(),20),1,20))


Thanks in advance

View 9 Replies View Related

DATEDIFF Values Are Different For Exactly Same Milliseconds

Feb 9, 2015

why the results I receiving for Seconds is different? I get the same MS results.

Microsoft SQL Server 2008 R2 (SP2) - 10.50.4000.0 (X64)
Jun 28 2012 08:36:30
Copyright (c) Microsoft Corporation
Standard Edition (64-bit) on Windows NT 6.1 <X64> (Build 7601: Service Pack 1) (Hypervisor)

--Returns 1 second
SELECT RunTime_SEC = DATEDIFF(SECOND, '2015-02-09 13:34:13.977', '2015-02-09 13:34:14.230')
,RunTime_MS = DATEDIFF(ms, '2015-02-09 13:34:13.977', '2015-02-09 13:34:14.230')

--Returns 0 second
SELECT RunTime_SEC = DATEDIFF(SECOND, '2015-02-09 13:30:30.147', '2015-02-09 13:30:30.400')
,RunTime_MS = DATEDIFF(ms, '2015-02-09 13:30:30.147', '2015-02-09 13:30:30.400')

View 6 Replies View Related

Datetime Column With Milliseconds???

Mar 27, 2006

hi ppls..
we have sql server 2000 EM. we received daily xml files and we insert into our database.there is one column Date_T having data type datetime.till date we recieved this records from xml as '03/23/2004 12:23:34:956' but due to some duplicate isssue we now want to modified this column to recieve as milliseconds like '03/23/2004 12:23:34:956232' now my point is wheather sql server handle this kind of milliseconds..please help me out as early as possible..

T.I.A

Papillon

View 9 Replies View Related

Converting Milliseconds In Hours

Oct 16, 2006

Hi!

I have the difference between two dates in milliseconds. I want to convert this difference to the format hh:mm:ss.mmm, without the date. So, if the difference is bigger then one day, I would like to show it like this, for example: 36:25:14.047

How can I do this?



Thank you!

View 5 Replies View Related

Milliseconds From DateTime Column

Nov 5, 2007

Hi,

I am trying to access a date column up to millisecond precession. So I cast date to as follows:



Code BlockCONVERT(varchar(23),CREATE_DATE,121)




I get millisecond part as a result of query but it€™s €œ000€?.

View 5 Replies View Related

Can Datetime Type Store Milliseconds

Aug 25, 2006

Hi,
I tried entering this value "8/24/2006 1:35:00.127 PM" with 127 as the milliseconds in a datetime field, but encountered error saying inconsistent datatype ...
Anyone knows how to store datetime value with milliseconds in the SQL database?
Thanks
 

View 13 Replies View Related

Inserting Datetime With Milliseconds In SQL Server

Jul 20, 2005

Hello all.I am attempting to insert a row into a table with a datetime column:When the insert statement contains a value for the millisecond portionof the data time column: ie. {ts '2003-11-05 12:02:43:2960'}I get 'Syntax error converting datetime from string'When I insert a value like: {ts '2003-11-05 12:02:43'}with no millisecond value it succeeds.Any help would be appreciated.Thanks

View 5 Replies View Related

How To Save To Datetime Field Without Milliseconds

Jul 4, 2015

I'm trying to save a datetime value from vb.net to a sql server.I'm using this code: Dim dt As DateTime = DateTime.Now.ToString("dd/MM/yyyy HH:mm:ss")
After I save this value to Database.But on sql server management studio , I see that the field's value still has the milliseconds .

View 14 Replies View Related

DATETIME, ADO, Parameterized INSERTs And Milliseconds, Oh My

Mar 21, 2008

I want to execute a paramterized ADO insert command into a SQL Server DATETIME column without losing the milliseconds. I can accomplish this without parameters, but that isn't what I want. Any suggestions?

It is OK that DATETIME only has a resolution of 3.33 milliseconds.

See the attached code:




Code Snippet

#include <string>

#include <iostream>

#import "C:Program FilesCommon FilesSystemadomsado15.dll" rename( "EOF", "ADOEOF" )

int main( int argc, char* argv[] )

{

::CoInitialize( NULL );

try

{

ADODB::_ConnectionPtr connection;

connection.CreateInstance(__uuidof( ADODB::Connection ) );


std::string connectionString;


connectionString.append( "Provider=SQLOLEDB;" );

connectionString.append( "Data Source=HPSERV1;" ); // Choose your server/instance.

connectionString.append( "Initial Catalog=tempdb;" );

connectionString.append( "Integrated Security=SSPI;" );

connection->ConnectionTimeout = 10;

connection->Open(

_bstr_t( connectionString.c_str() ),

_bstr_t( "" ),

_bstr_t( "" ),

ADODB::adOpenUnspecified );


std::string sqlStatement;


sqlStatement = "DROP TABLE TestTable1";


try

{

connection->Execute( _bstr_t( sqlStatement.c_str() ), NULL, ADODB::adExecuteNoRecords );

}

catch( const _com_error& )

{

// Ignore errors as table probably doesn't exist.

}


sqlStatement = "CREATE TABLE TestTable1 ( ColInt INT NOT NULL PRIMARY KEY, ColDate DATETIME )";

connection->Execute( _bstr_t( sqlStatement.c_str() ), NULL, ADODB::adExecuteNoRecords );



// ====================================================================

// Works (datetime resolution is 3.33 milliseconds so rounds to .347)


sqlStatement = "INSERT INTO TestTable1 ( ColInt, ColDate ) VALUES ( 1, '2007-12-28 20:05:16.345' )";

connection->Execute( _bstr_t( sqlStatement.c_str() ), NULL, ADODB::adExecuteNoRecords );



// ====================================================================

// Works (NULL is inserted)


sqlStatement = "INSERT INTO TestTable1 ( ColInt, ColDate ) VALUES ( 2, NULL )";

connection->Execute( _bstr_t( sqlStatement.c_str() ), NULL, ADODB::adExecuteNoRecords );



// ====================================================================

// Works (datetime resolution is 3.33 milliseconds so rounds to .347)


sqlStatement = "INSERT INTO TestTable1 ( ColInt, ColDate ) VALUES ( 3, CONVERT( DATETIME, '2007-12-28 20:05:16.345' ) )";

connection->Execute( _bstr_t( sqlStatement.c_str() ), NULL, ADODB::adExecuteNoRecords );




// ====================================================================


unsigned int colInt = 3;

sqlStatement = "INSERT INTO TestTable1 ( ColInt, ColDate ) VALUES ( ?, ? )";


ADODB::_CommandPtr command;




// ====================================================================

// Fails (Operand type clash: ntext is incompatible with datetime)


colInt++;


command.CreateInstance( __uuidof( ADODB::Command ) );

command->ActiveConnection = connection;

command->CommandType = ADODB::adCmdText;

command->CommandText = _bstr_t( sqlStatement.c_str() );

command->Parameters->Append( command->CreateParameter(

_bstr_t(),

ADODB::adInteger,

ADODB::adParamInput,

4,

_variant_t( colInt ) ) );

command->Parameters->Append( command->CreateParameter(

_bstr_t(),

ADODB::adBSTR,

ADODB::adParamInput,

-1,

_bstr_t( "2005-10-25 09:10:11.012" ) ) );


try

{

command->Execute( NULL, NULL, ADODB::adCmdText );

}

catch( const _com_error& e )

{

std::cout << "Error at colInt=" << colInt << " (ADODB::adBSTR and _bstr_t):"

<< " HRESULT = " << e.Error() << ": " << e.Description() << ""

<< " SQL statement: " << command->CommandText << std::endl;

}




// ====================================================================

// Fails (Operand type clash: text is incompatible with datetime)


colInt++;


command.CreateInstance( __uuidof( ADODB::Command ) );

command->ActiveConnection = connection;

command->CommandType = ADODB::adCmdText;

command->CommandText = _bstr_t( sqlStatement.c_str() );

command->Parameters->Append( command->CreateParameter(

_bstr_t(),

ADODB::adInteger,

ADODB::adParamInput,

4,

_variant_t( colInt ) ) );

command->Parameters->Append( command->CreateParameter(

_bstr_t(),

ADODB::adChar,

ADODB::adParamInput,

-1,

_bstr_t( "2005-10-25 09:10:11.012" ) ) );


try

{

command->Execute( NULL, NULL, ADODB::adCmdText );

}

catch( const _com_error& e )

{

std::cout << "Error at colInt=" << colInt << " (ADODB::adChar and _bstr_t):"

<< " HRESULT = " << e.Error() << ": " << e.Description() << ""

<< " SQL statement: " << command->CommandText << std::endl;

}




// ====================================================================

// Fails (A datetime is inserted to table but milliseconds are zeroed)


colInt++;


::SYSTEMTIME sysNow;

::GetSystemTime( &sysNow );


double myTime;

::SystemTimeToVariantTime( &sysNow, &myTime );


// SystemTimeToVariantTime strips milliseconds, so we'll add some more

// back in as we're testing insert of milliseconds.


double desiredMilliseconds = 456;

myTime += desiredMilliseconds / 24.0 / 3600.0 / 1000.0;


command.CreateInstance( __uuidof( ADODB::Command ) );

command->ActiveConnection = connection;

command->CommandType = ADODB::adCmdText;

command->CommandText = _bstr_t( sqlStatement.c_str() );

command->Parameters->Append( command->CreateParameter(

_bstr_t(),

ADODB::adInteger,

ADODB::adParamInput,

4,

_variant_t( colInt ) ) );

command->Parameters->Append( command->CreateParameter(

_bstr_t(),

ADODB::adDate,

ADODB::adParamInput,

-1,

_variant_t( myTime, VT_DATE ) ) );


try

{

command->Execute( NULL, NULL, ADODB::adCmdText );

}

catch( const _com_error& e )

{

std::cout << "Error at colInt=" << colInt << " (ADODB::adDate and _variant_t VT_DATE):"

<< " HRESULT = " << e.Error() << ": " << e.Description() << ""

<< " SQL statement: " << command->CommandText << std::endl;

}

}

catch ( _com_error& e )

{

std::cout << "Unexpected error: "

<< e.Description() << std::endl;

}


return 0;

}



View 3 Replies View Related

Reporting Services :: Convert Milliseconds To HH:MM:SS

Aug 9, 2006

I am writing a report that Queries a SQL DB using 'SQL Server Business Intelligence Development Studio'. I have a field in the DB called duration and it is in milliseconds. I am trying to find an easy way to convert the format from Milliseconds to HH:MM:SS.Nearest I can get is the following for the field:

=Int( ((Fields! DURATION.Value/1000) / 60) / 60) & ":" & Int(((((Fields!DURATION.Value/1000) / 60) / 60) - Int(((Fields!DURATION.Value/1000) / 60) / 60)) * 60)

The output is in HH:MM. One issue with this is if the MM is say :03, it prints as :3. I lose the leading 0 so 9:03 (9hrs and 3 minutes) prints as 9:3. Where as 9:30 (9 hrs and 30 minutes) prints as 9:30 as it should.

View 6 Replies View Related

SQL 2012 :: BCP Output - Remove Milliseconds Part

Apr 18, 2014

I The requirement is to unload all columns data into csv file using bcp with pipe delimiter, but the condition is to remove milliseconds part of a datetime column.

Ex:
2014-02-19 17:12:14.967 remove .967 from data while unloading into csv.

View 1 Replies View Related

SQL 2012 :: Extended Events Duration In Milliseconds Or Microseconds?

Apr 15, 2015

When you view the Extended Events "Watch Live Data" is the duration in milliseconds or microseconds? I'm assuming it's milliseconds, but if you look at the timestamp difference from start to complete it doesn't add up to the duration amount? It looks like it's just the difference between the timestamps?

View 5 Replies View Related

SQL Server 2000 And Milliseconds (datetime Data Type)

Jan 18, 2007

I'm running into a constant issue of SQL Server modifying themillisecond part of a timestamp insert from another application. Theapplication inserts timestamp which includes a millisecond portion as astring (varchar). But when an SQL Server moves this data to anothertable (for reporting), the string is inserted in a datetime field, themillisecond field invariably changes by 1-2 milliseconds for everysingle data point inserted. Given the time critical nature of this data(to a millisecond), its almost impossible to avoid this other than toleave the data as string type. But this drives the analytical reportingfolks wild as report queries based on time criteria are getting messedup. Any ideas how to force SQL Server not to mess around with themillisecond value? Does this problem exist with SQL Server 2005 as well?

View 2 Replies View Related

SSIS Deriving Dt_str To Dt_dbtimestamp Including Milliseconds

Dec 27, 2007

Hi, I am trying to derive a column from:

mm/dd/yyyy hh:mms.fff to dt_dbtimestamp as:

(dt_dbtimestamp)(colum_name,1, 23) when I include the period and three digits for milliseconds the package fails if I leave it out it is successfull. I need to include milliseconds for my datawarehouse project. I tried many different ways and always with failure
01/23/2007 12:23:15.234 is the date(example) derived: (dt_dbtimestamp)(column_name,1,23) fails
01/23/2007 12:23:15.234 is the date(example) derived: (dt_dbtimestamp)(column_name,1,19) succeeds

Thanks

View 9 Replies View Related

Round Milliseconds To 2 Decimal Places In 00:02:09:6570000 Format In Sql Reporting Services?

Nov 27, 2007


Start End Duration




11/20/2007 12:05:57 PM

11/20/2007 12:08:06 PM

00:02:09.6570000


Duration =(Fields!end.Value-Fields!startdate.value) i get the output as shown above.

I need to round that output to 2 decimal places and display it as 00:02:09.65

Any ideas?

View 7 Replies View Related







Copyrights 2005-15 www.BigResource.com, All rights reserved