Hi,
I am trying to use SQL statements as Command under Database Expert. I have couple of questions on this and hope somebody would be able to help me there.
1 Once a command item is added, is there anyway we can change the name of the item? For example, I see the name for the first code shown here as count(1). I would like to rename this to something more meaningful.
2 I tried the following and it works fine.
[code}
SELECT COUNT(1) FROM oradba.up_user
WHERE TRUNC(date_created) >= ADD_MONTHS(TRUNC(sysdate), -12)
[/code]
But the following gives an error while adding the command. "Failed to retireve data from the database. ORA-00911: Invalid charactaer"
Both the codes work in SQL developer successfully.
[code}
SELECT COUNT(1) FROM oradba.up_user
WHERE TRUNC(date_created) >= ADD_MONTHS((LAST_DAY(ADD_MONTHS(trunc(sysdate),-1))), -12);
[/code]
I would appreciate any insight / help on this.
Thanks and regards,
Chandra
I am trying to use SQL statements as Command under Database Expert. I have couple of questions on this and hope somebody would be able to help me there.
1 Once a command item is added, is there anyway we can change the name of the item? For example, I see the name for the first code shown here as count(1). I would like to rename this to something more meaningful.
2 I tried the following and it works fine.
[code}
SELECT COUNT(1) FROM oradba.up_user
WHERE TRUNC(date_created) >= ADD_MONTHS(TRUNC(sysdate), -12)
[/code]
But the following gives an error while adding the command. "Failed to retireve data from the database. ORA-00911: Invalid charactaer"
Both the codes work in SQL developer successfully.
[code}
SELECT COUNT(1) FROM oradba.up_user
WHERE TRUNC(date_created) >= ADD_MONTHS((LAST_DAY(ADD_MONTHS(trunc(sysdate),-1))), -12);
[/code]
I would appreciate any insight / help on this.
Thanks and regards,
Chandra