3
I wonder if there is something equivalent in Oracle for this select
in SQL Server:
select NickName, ExternalId1 from Basics where externalId1 = @externalId1 for xml auto, elements;
And to this select
down below:
select
x.n.value('OperationId[1]', 'int'),
x.n.value('Name[1]', 'varchar(50)'),
x.n.value('MaxTime[1]', 'float')
from @xml.nodes('/*[1]') x(n);
let’s see if I got this select Nickname, Externalid1 from Basics Where externalId1 = @externalId1 for xml auto, Elements; in Sqlserver is the same for Oracle? Thank you.
– eddiedev
@eddiedev Exactly.
– Leonel Sanches da Silva
Interesting. I thought it changed the way of sending this xml to an Oracle database. Thank you
– eddiedev
@eddiedev If the Gypsy response has solved your problem, mark it as accepted, so that everyone can know how you solved your problem.
– Gabe