Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Select Statement for date against Oracle 9i database 2

Status
Not open for further replies.

ziggs

Technical User
Sep 21, 2000
195
0
0
US
I'm trying to get all incidents within a 24 hour period against an Oracle 9i database. In Crystal Reports, part of my select statement that works is:

{INCIDENT.CALL_TIME} >= (currentdatetime - 1)

In an ASP, I can use the following against the same database:

{INCIDENT.CALL_TIME} > to_date('" & oraclesysdatelessoneday & "', 'DD-MON-YY HH24:MI:SS')"

Is there anything that will equate to the above in Actuate?
 
If it's in Actuate Basic you'll need something like this:

INCIDENT.CALL_TIME >= DateAdd("d", -1, Now( ) )
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top