Skip to main content
Filter by
Sorted by
Tagged with
0 votes
0 answers
46 views

In excel, I'm taking user input in one table INPUT, copying it to a structured table OUTPUT with some additional data and exporting that into XML. Input Table Category Code Foocat Zulucode Barcat ...
Tim Potter's user avatar
0 votes
1 answer
49 views

I have this export script of a dataframe in xml format: df.to_xml('df.xml',root_name='dataroot',row_name='Anexa_1I', namespaces={"xsd": "http://www.w3.org/2001/XMLSchema",...
Alexandru Alico Milea's user avatar
0 votes
0 answers
67 views

I have seen that there are already some articles on this topic, but unfortunately I have not found a solution for my code. I’m exporting orders from Woocommerce with custom codes (plugin WP ALL IMPORT)...
Orko22's user avatar
  • 55
0 votes
1 answer
109 views

I have a pandas dataframe with a single row. Now I need to Convert this dataframe into an xml string and store it to a variable Modify the xml string variable to add header tags. Load the modified ...
Sam's user avatar
  • 25
1 vote
1 answer
135 views

I am trying to generate xml file from pandas dataframe using pd.to_xml() method. I have data in SQL-Server and trying to read from it. id first_name last_name email gender ip_address 1 Erika Pickless ...
Dhruv Rajkotiya's user avatar
0 votes
1 answer
52 views

I have trouble exporting my xml from class object, when I generate my XML a node nests inside one with the same name the problem will be serialized a list. I have an object like this: Currently my ...
Jonathan Jimenez's user avatar
0 votes
1 answer
1k views

I need to get data from database, massage it into list of objects, then finally generate an XML file with a METADATA tag (expected result), I think those DATA PACKET, METADATA, etc.. tag is not ...
Jessie Loke's user avatar
0 votes
0 answers
2k views

I'd like to insert XML tags into a word document to grab some information, same as this guy. https://www.youtube.com/watch?v=v0DoQkecvnI My mindset is to keep something simple when i take notes from ...
Gilles Gruwez's user avatar
0 votes
0 answers
326 views

So my issue is, as part of my job I have to complete in regular reports on word which are formatted in tables. I then have to go online and fill in an online form with all the information from the ...
Erathium's user avatar
0 votes
1 answer
1k views

I'm using SQL Server 2019 - v15.0.4123.1. This is the sample query (from this question): DECLARE @tbl TABLE (ID INT IDENTITY PRIMARY KEY, city VARCHAR(30)) INSERT INTO @tbl (city) VALUES ('Miami'), (...
Fuboski's user avatar
  • 113
0 votes
1 answer
260 views

I need to get an XML from a query: SELECT ... join ... FOR XML PATH ('parent-lines'), ROOT('main-tag'), ELEMENTS XSINIL; I have been able to get this structure: <main-tag> <parent-lines>...
CtrlFnAlt's user avatar
0 votes
1 answer
521 views

I have a very interesting problem with XML output from SQL query. DECLARE @DateStr VARCHAR(30), @sql nvarchar (4000) SET @DateStr = REPLACE(REPLACE(REPLACE(CONVERT(VARCHAR(30), dateadd(HH,+2,getdate(...
Sna's user avatar
  • 1
0 votes
0 answers
147 views

From Linux, might there be a "native" or built-in convenient "database" facility from withing Powershell itself? While this works fine for importing data: nicholas@mordor:~/csv$ ...
Nicholas Saunders's user avatar
0 votes
1 answer
414 views

How can I get the curl result of just <notes/>, from eXist, with PowerShell? PS /home/nicholas> PS /home/nicholas> $url='http://localhost:8080/exist/rest/db/scripts/notes.xq' PS /home/...
Nicholas Saunders's user avatar
0 votes
0 answers
205 views

I have an excel (2016) document. On one sheet I have a table that I want to export to XML, no probleem. Now I ad an new sheet with a new and different table, that I also want to export to XML, this ...
Erik's user avatar
  • 1
1 vote
1 answer
2k views

I add context menu and reassign export to csv and Excel - I need export use valueFormatter for some column. Export working fine, but after I run export to xml, and then run export to Excel - I get xml ...
kisarin's user avatar
  • 71
0 votes
0 answers
560 views

I have to export data from SQL Server 2014 SP3 CU3 to an XML file, for a vendor to test something, which I've done successfully. However, I don't know how their application/system works, as they ...
Ovidiu Manea's user avatar
0 votes
1 answer
319 views

i would like to convert from CSV to XML with Java/Javascript. For example my CSV file is like this table: | ID | OLO | | 12345 | TLC | | 12345 | VPN | | 67890 | TLC | I would like to have an XML ...
ZBMZ's user avatar
  • 3
0 votes
1 answer
2k views

I have some images, which I annotated using MATLAB's imageLabler tool. As a result I got gtruth.mat file (which contains annotations of all of the images). Now I would like to train a simple object ...
user8611018's user avatar
1 vote
2 answers
618 views

I have a very large spreadsheet that I'm trying to export to XML. Any row with repeating cells are skipped over during the transformation. So if a row has 1 2 2 2 3 4 5 only the first 2 will be ...
danwardvs's user avatar
1 vote
1 answer
2k views

The code below creates me an XML file that shows up as a link as shown in image1 DECLARE @xmlentire AS XML = ( select (select @xmlheader as returnXml), (select @xmlbody as returnXml) for xml path ('...
jp3nyc's user avatar
  • 71
0 votes
1 answer
264 views

I'm creating an XML file. What I need is to have a line-break before close the TAG My expected printout is <View x=“0” y=“0" width=“464” height=“287"> </View> instead, the ...
icona's user avatar
  • 1
0 votes
0 answers
87 views

I have an Excel file that contains the column persons. In order to export this Excel sheet to XML I provided an XML schema that looks like this: <members> <person></person> </...
jz22's user avatar
  • 2,700
2 votes
0 answers
634 views

I'm trying to export products from WooCommerce in XML using MySQL and PHP (v7.*). I've created custom table and added products there, using codes: INSERT INTO `xml_export`(`id`, `product_name`, `...
St Pavel's user avatar
  • 349
1 vote
3 answers
1k views

I have a DataGrid ($myWindow.myDataGrid.Items) that I am trying to Export-Clixml. The $myWindow.myDataGrid.Items is an ItemCollection that contains String properties that are words with certain ...
1housand's user avatar
  • 636
1 vote
2 answers
2k views

Below is a very small example of the SQL and XML but no idea how to export this into say C:\Users\Simon.Evans\Documents\Test.xml. To be fair I have very little to zero knowledge of XML so walking in ...
Simon's user avatar
  • 401
0 votes
2 answers
3k views

Anybody here knows how to export the parent and response forms to xml file? I got this code wherein it gets all the objects in the parent form and exports it to xml but it doesn't access the response ...
Ragome's user avatar
  • 75
2 votes
3 answers
9k views

Trying the following PHP export to XML in order to create a remote phonebook for a Yealink SIP-T46G. Managed to get so far but currently exporting a an XML format that isn't valid to use on the phones....
user avatar
0 votes
1 answer
1k views

I am trying to export the xml generated from sql query. I am trying like this EXEC master.dbo.sp_configure 'show advanced options', 1 RECONFIGURE EXEC master.dbo.sp_configure 'xp_cmdshell', 1 ...
Iswar's user avatar
  • 2,341
0 votes
1 answer
366 views

I'm connecting to an API to download some websites in xml format. I utilizing BeautifulSoup in the Jupyter environment. I'm utilizing this code to access the data... my_params = {some parameters} ...
redeemefy's user avatar
  • 4,895
0 votes
0 answers
384 views

I am having a xlsm file and I need to export one sheet from that file to an xml file. I am having a predefined xml schema and i have to do it from the command line. Can anyone help with this problem?
Luka Klarić's user avatar
0 votes
1 answer
69 views

I have a resultSet formed by: LazyList<DeliveryLabel> deliveryLabels = DeliveryLabel.findBySQL(sql); String wxml = deliveryLabels.toXml(true, true); The xml generated start with: <...
Luciano Bezerra's user avatar
0 votes
1 answer
1k views

I have a blog export package which exports blog content in Umbraco to XML. Now I want to export comment data, the comments section is set as a childNode on the NewsItem node, how can I use this ...
Jonathan Yaniv Ben Avraham's user avatar
0 votes
1 answer
559 views

I want to export data to a xml file from oracle. I'm not sure how to go about it. This is the code for what I have tried so far but I am getting a error saying table doesnt exist. The schema has ...
user2127184's user avatar
2 votes
1 answer
4k views

I have a requirement where I need to generate the XML reports and I need to populate the the XML with the values from Database. I starting using Jasper Reports where I can generate the reports of ...
user2797499's user avatar
0 votes
1 answer
495 views

When trying to create a XML map in excel I get the error 1B6: (Add-Ins Tab -> XML Tools -> Select Convert range to XML -> click OK button) fnMapRangeWithXml window which states ERROR 1B6: Object ...
Merav Kochavi's user avatar
0 votes
1 answer
318 views

I am exporting data from Access on regular basis. So far I used to export it and manually edit some tags to adjust it to Clients needs. Lately I found that that there is posibility to use XSL as a ...
lowak's user avatar
  • 1,294
2 votes
1 answer
2k views

SonataAdminBundle can export list data into several formats (CSV, Excel, JSON and XML), but the resulting file label headers exactly as the column names. How can I replace those names for more ...
rodrigobb's user avatar
  • 714
0 votes
1 answer
70 views

I use MS Access 2007. I have created simple select query and later I used hidden attribute. My question is why I cannot export data to XML while having hidden attribute?
lowak's user avatar
  • 1,294
0 votes
1 answer
4k views

I'm trying to set up a report in SSRS with a subscription to export some data as a XML file so it can be imported into another application. However the report element is causing the whole thing to ...
Greville Whittle's user avatar
-1 votes
1 answer
3k views

I need to save data from a relational database record set in MySQL (composed of multiple tables and multiple sub-records for each master record) to an xml file. My questions are: Is there an xml ...
Yirmiyahu Fischer's user avatar
1 vote
1 answer
2k views

I'm decided to try my way around VBA, got a little script running to export a XML map I have in a worksheet to XML, works fine so far, but when that XML file is already generated, it returns a error ...
Diego's user avatar
  • 105
0 votes
1 answer
154 views

I'am trying to export SQL Server table to XML file using the following code: Dim ds As New Data.DataSet("MyData") Dim QueryStr As String = "Select * from Inventory" Dim ConnectionStr as String = "...
JemoGlemo's user avatar
-2 votes
1 answer
346 views

My requirement is as follows I want to convert below data in Excel to XML in this format. Last Name Sales Country Quarter Smith $16,753.00 UK Qtr 3 Johnson $14,808.00 USA Qtr ...
Braine's user avatar
  • 5
0 votes
1 answer
60 views

I am getting info from a database and adding it to a dataset. Then I create a XML with this info. I would want to have the XML, but also the datatypes in the header. Is it possible? Here my code to ...
Za7pi's user avatar
  • 1,428
0 votes
1 answer
260 views

I am trying to export fields from a Lotus Notes database via XML. I created a view with all the columns and the XML tags. I then created a page that references this embedded view. When I open the ...
Spurious's user avatar
  • 2,045
1 vote
2 answers
1k views

I need your help on to_xml function. How can i make all nil="True" value to a default value '' (blank) when exporting to xml from active record.
Ben's user avatar
  • 11
0 votes
2 answers
6k views

I need to export some attributes from active directory user accounts to xml containg Displayname, email, officephone, mobile, office and department. I got this powershell code foreach ($User in (get-...
Niklas's user avatar
  • 27
13 votes
2 answers
49k views

I've a class correctly defined and after serialize it to XML I'm getting no encoding. How can I define encoding "ISO-8859-1"? Here's a sample code var xml = new XmlSerializer(typeof(Transacao)); ...
gandarez's user avatar
  • 2,702
1 vote
3 answers
11k views

I have created an Excel that includes a mapping file. What I am trying to do is have users enter the data in here and press ctrl + E (I created a macro) and it would export it out as XML. Here's the ...
NonProgrammer's user avatar