sql server - Crystal Report 9 is displaying only the 1st record if records vary only by millisecond -


i using sql sever 2005, vc 6 ++ , crsystal report api print report in child window.

if records vary only milliseconds, crystal report showing 1st record. otherwise, fine.

i picking timestamp sql server datetime field.

in formula inside crystal report, giving following expression tablename.timestampfield.

the field format timestamp field mm/dd/yyyy hh:mm:ss (in 24 hrs)

can please tell change need make records displayed?

note:- if run same sql query give crystal report in sql server, gives me records.

new ---- edited after posting question.....

i want make change in crystal report. actaull, records inside cystal report being supprested based on following formala:

if not previousisnull ({table.timestamp})   if {table.timestamp}  = previous ({table.timestamp})   ,  {table.object_id}  = previous ({table.object_id})           true 

somehow, cystal report comparing timestamp field till seconds.

can tell me how force crystal report consider milliseconds while doing comparison? b/w timestamps?

thanks

sql server 2005's datetime datatype has granularity of approximately 3.3 milliseconds.


Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -