Posts by Fabio Alves Francelino • 11 points
3 posts
-
0
votes1
answer62
viewsQ: Error in function to return Querystring in Javascript
When using this function by calling the filter parameter of an error, instead of returning the value of the Querystring parameter it returns a Function. //Retorna os valores da querystring function…
-
1
votes1
answer26
viewsA: SQL Transform XML attributes into columns
I managed to find something that solved my Query minutes after posting the question: SELECT id_tab, field1_tab, paramsxml_tab.value('(/row/@war_dat)[1]', 'int') as war_dat,…
-
0
votes1
answer26
viewsQ: SQL Transform XML attributes into columns
I have the following code: IF OBJECT_ID('dbo.tabTeste') IS NOT NULL DROP TABLE dbo.tabTeste GO CREATE TABLE dbo.tabTeste ( id_tab INT IDENTITY PRIMARY KEY, field1_tab VARCHAR(255), paramsxml_tab…