Here is a documentation about xbrl data exporting into postgres. Also there are XBRL-US and Abstract Model sql scripts for postgres db. The documentation also points out that export can be done into different databases. But postgres supports different schemas in single database. How to change Arelle settings to export xbrl into different schema than public? (here I mean python code, for sql scripts text replace can be easyly done)
How to set up Arelle to export xbrl into other postgres schema than `public`?
354 Views Asked by Cherry At
1
There are 1 best solutions below
Related Questions in PYTHON
- new thread blocks main thread
- Extracting viewCount & SubscriberCount from YouTube API V3 for a given channel, where channelID does not equal userID
- Display images on Django Template Site
- Difference between list() and dict() with generators
- How can I serialize a numpy array while preserving matrix dimensions?
- Protractor did not run properly when using browser.wait, msg: "Wait timed out after XXXms"
- Why is my program adding int as string (4+7 = 47)?
- store numpy array in mysql
- how to omit the less frequent words from a dictionary in python?
- Update a text file with ( new words+ \n ) after the words is appended into a list
- python how to write list of lists to file
- Removing URL features from tokens in NLTK
- Optimizing for Social Leaderboards
- Python : Get size of string in bytes
- What is the code of the sorted function?
Related Questions in POSTGRESQL
- Why does adding a JOIN completely modify the query planner behaviour?
- When dealing with databases, does adding a different table when we can use a simple hash a good thing?
- Aggregate and count in PostgreSQL
- Rails HABTM: Select everything a that a record 'has'
- Trigger using data from inserted row
- Select results where joined table contains records with an attribute, but without another
- DB candidate as CouchDB/Schema replacement
- How do I properly add data in SQLAlchemy?
- Postgres in Conda Environment (Ubuntu 14.04)
- How to customize the output of the Postgres Pseudo Encrypt function?
- Split a large query (2 days) into pieces to increase the speed in Postgres
- Why does pg_search prefix not work like I expect?
- extracting meta info from a table psql using information_schema
- How to query a table in the database and copy it's data into one one?
- Update a table using info from a second table and a condition from a third table in Postgresql
Related Questions in XBRL
- Xbrl data extraction
- XJC : Creating Stub for XBRL schemas
- Error when installing python-xbrl 1.0.7
- Calculating Gross Profit Margin from COGS and Sales Revenue in XBRL
- Library for analyzing xbrl files in java
- Generating XBRL document programmatically: Use a template or a library?
- SQL Server and XBRL
- how to find quarter and year for xbrl document
- Performance Optimization for .net 3.5 desktop Application and SQL Server 2008
- Financial Statement API / XBRL
- How do I select <dei:DocumentType from XBRL using Cheerio (or
- Capture the Selected Text from ms word file and save it to XBRL file
- Connect Excel with SEC EDGAR
- Is it ok to use special characters in xbrl context names
- storing data retrieved from REST endpoint into variables in python
Related Questions in ARELLE
- Import Error in python when non root user
- Run .exe with extra parameters as windows service with sc create
- Arelle locate ratio extraction command that i cannot understand to find in docs(~2pages)
- Use Arelle to export XLSX file
- Arelle Xbrl validation - unable to start web service - socket error 10013
- Arelle Webserver - How to extract the actual label text [not the Standard tag text ] from XBRL filing?
- extract elasticsearch date from a <start-date>/<duration> XBRL-JSON format
- How do I get started with analyzing XBRL in python?
- Cannot open Arelle menu view to use SEC's EdgarRenderer
- Cannot trigger opening of Internet browser report from within Arelle
- Getting error about bad escape during start of Arelle
- Company ratio calculation using arelle
- Using XBRL platform Arelle as AWS lambda function
- How set up arelle for large xbrl files?
- How speed up xbrl file parsing in python lxml?
Trending Questions
- UIImageView Frame Doesn't Reflect Constraints
- Is it possible to use adb commands to click on a view by finding its ID?
- How to create a new web character symbol recognizable by html/javascript?
- Why isn't my CSS3 animation smooth in Google Chrome (but very smooth on other browsers)?
- Heap Gives Page Fault
- Connect ffmpeg to Visual Studio 2008
- Both Object- and ValueAnimator jumps when Duration is set above API LvL 24
- How to avoid default initialization of objects in std::vector?
- second argument of the command line arguments in a format other than char** argv or char* argv[]
- How to improve efficiency of algorithm which generates next lexicographic permutation?
- Navigating to the another actvity app getting crash in android
- How to read the particular message format in android and store in sqlite database?
- Resetting inventory status after order is cancelled
- Efficiently compute powers of X in SSE/AVX
- Insert into an external database using ajax and php : POST 500 (Internal Server Error)
Popular Questions
- How do I undo the most recent local commits in Git?
- How can I remove a specific item from an array in JavaScript?
- How do I delete a Git branch locally and remotely?
- Find all files containing a specific text (string) on Linux?
- How do I revert a Git repository to a previous commit?
- How do I create an HTML button that acts like a link?
- How do I check out a remote Git branch?
- How do I force "git pull" to overwrite local files?
- How do I list all files of a directory?
- How to check whether a string contains a substring in JavaScript?
- How do I redirect to another webpage?
- How can I iterate over rows in a Pandas DataFrame?
- How do I convert a String to an int in Java?
- Does Python have a string 'contains' substring method?
- How do I check if a string contains a specific word?
I think you are mistaking the default PostgreSQL schema
publicwith XBRL data-models.publicis PostgreSQL specific, independent of Arelle or XBRL. To alter the XBRL data model, specify thetechnologyparameter in the arelleCmdLine:pgSemanticwill use the Abstract model,postgreswill use the XBRL-US Public data-model.In both cases the XBRL data will appear under the
publicschema in your PostgreSQL database.