Export instance table in json format from magicdraw - json

Anybody have an example (velocity template or other...) for exporting an instance table from magicdraw (or cameo) in a json format?
I'm just investigating right now so close ideas are welcome.

Related

JSON format in wordpress database

I need to import JSON data in a WP database. I found the correct table of the database but the example JSON data present in table is not in a normal JSON format.
I need to import:
{"nome": "Pippo","cognome": "Paperino"}
but the example data in the table is:
a:2:{s:4:"nome";s:5:"Pippo";s:7:"cognome";s:8:"Paperino";}
How i can convert my JSON to "WP JSON"?
The data is serialized, that's why it looks weird. You can use maybe_unserialize() in WordPress, this function will unserialize the data if it was serialized.
https://developer.wordpress.org/reference/functions/maybe_unserialize/
Some functions serialize data before saving it in wordpress, and some will also unserialize when pulling from the DB. So depending on how you save it, and how you later extract the data, you might end up with serialized data.

how to display geometry format data in mysql database?

Sorry my english is not good.
I have problem with to display data format "geometry" from mysql database. I got the data from file extension .geojson (like json but but contains coordinate), I convert the .geojson data with cmd. and this data is formed.
for example my geojson data
and this is an example of converting geojson to database
i use laravel, to display this data what is the task of laravel or mysql (eg there is a special mysql function)? and how?
What are you looking to do with the geometry data and have you looked at the Geo JSON functions https://dev.mysql.com/doc/refman/8.0/en/spatial-geojson-functions.html such as St+GeomFromJson()??

Change date format of data coming from flat file SSIS

I am reading data from a flat file and storing them in a OLE DB destination.
In the flat file, dates and in various formats
17/02/2014,
28-Apr-14,
30.06.14
I have used a Derived column transformation to check for empty columns and replace it with null. As far as I have seen SSIS and data base accepts 17/02/2014 format and 28-Apr-14, 30.06.14 are rejected.
I want to convert 28-Apr-14 and 30.06.14 to a valid format which DB accepts.
I have researched a bit and read that Script task can do it but I am not sure of the code how to check this.
Could you please guide which is the best way to do this.
Any suggestions/help is much appreciated.
Thanks
Rao
Check out my answer on the following question. This should work for you as well.
SSIS clean up date from csv file

Converting Hive Map to Redshift JSON

Can anyone recommend a code snippet, script, tool for converting a Hive Map field to a Redshift JSON field?
I have a Hive table that has two Map fields and I need to move the data to Redshift. I can easily move the data to a string format but then lose some functionality with that. Would prefer to have Map ported to JSON to maintain key, value pairs.
Thanks.
You might want to try the to_json UDF
http://brickhouseconfessions.wordpress.com/2014/02/07/hive-and-json-made-simple/

Importing json data into MySQL?

Pretty much what the title says :)
At the moment I'm using Python to turn the json data into a plain-text tab-separated file, and then mysqlimport to pull that into my MySQL tables. Anyone know a nicer / more direct way?
check this from Ayende.. might be some help..
http://ayende.com/Blog/archive/2010/03/05/actual-scenario-testing-with-raven.aspx
http://ayende.com/Blog/category/564.aspx
http://ayende.com/Blog/archive/2010/03/23/first-look-at-raven-db.aspx