• When I run this command

    SELECT CONVERT(VARCHAR(35),source_id,121) FROM test@dblink_test

    I get the following error:ORA-00936: missing expression....hence I am not even able to issue this command..

    I am running through Toad.I have a dblink created in Oracle 10g which connects to remote third party SQL Server 2008.The dblink uses HS ODBC connection which uses SQL SERVER native client driver version 2009...Im not sure if conversion over ODBC could be an issue.

    I tried convert , CAST , To timestamp....

    select cast(source_id as timestamp) from test@dblink_test---gives me an output :1/1/1753 12:00:00.000000 AM....the milliseconds just default to 0000000s.

    Thanks.