Sören Auer wrote:
> For our DBpedia query builder I need the quitecast option, but I'm not
> getting it to work.
> Consider the following simplified example:
>
> create table qctest (value varchar);
> insert into qctest values('100');
> insert into qctest values('1000');
> insert into qctest values
Hi Sören,
The quietcast option works for implicit casts e.g. select * from
sys_users where u_id = 'abc' option (quietcast);
As for explicit cast, this is a function call and it's behavior is not
affected by statement option.
Best Regards,
Mitko
Sören Auer wrote:
> For our DBpedia query build