In Adobe campaign I have several (400+) schemas so I need to query all of them to see if they have recent data so that I will know what schemas need to monitor. To do this I will use the creation date on every schema. The problem is that I don't want to do it manually (go 1 by 1), is there a way to automate this and get all the schemas let's say using java script and then use a query with the creation date and pass a specific date ?
Adobe Campaign - Query multiple schemas
659 Views Asked by Chilis At
2
There are 2 best solutions below
0
theopendle
On
This answer assumes you are using Adobe Campaign Classic (on premise) not Standard (cloud versions):
As far as I know, there is no way to easily do this from within Campaign. However, all the schemas you can query using the Generic Query Editor or in a worflow correspond to tables in the Oracle database on which AC is based. If you connect to this database you can run regular Oracle SQL queries which gives you much more control.
Related Questions in JAVASCRIPT
- Angular Show All When No Filter Is Supplied
- Why does a function show up as not defined
- I count the time the user takes to solve my quiz using Javascript but I want the same time displayed on another page
- Set "More" "Less" font size
- Using pagination on a table in AngularJS
- How to sort these using Javascript or Jquery Most effectively
- how to fill out the table with next values in array with one button
- State with different subviews
- Ajax jQuery firing multiple time display event for the same result
- Getting and passing MVC Model data to AngularJS controller
- Disable variable in eval
- javascript nested loops waiting for user input
- .hover() seems to overwrite .click()
- How to sort a multi-dimensional array by the second array in descending order?
- How do I find the fonts that are not loading in a CORS situation ( MoovWeb )?
Related Questions in ADOBE
- Adding a listener to a VerticalScrollBar in flex
- How to include an existing component multiple times
- Coldfusion 9 serializeJSON()
- Creating a vertically draggable container in Adobe Flex 3.5
- Adobe Analytics - Log/debug back-end traffic
- Redirection url in Adobe Analytics
- Adobe omniture - trying to fire evar and events in the s_code file doesn't work
- How to add multiple pages in AIR for Android
- Not able to see modified pdf only on Adobe Acrobat reader on ios
- blob url in ie is not working
- How do I get rid of a 3D grid overlaying my artboard in Ilustrator?
- Creating a Record Option on a PDF or Word Document
- Read IDML file in Java
- Photoshop - How to navigate the canvas using Javascript?
- Unable to see embedded image in <TextArea> using <img> tag (Flex 3.5 build 123683)
Related Questions in WORKFLOW
- Oozie Pig action stuck in PREP state and job is in RUNNING state
- workflow status on a third-party website
- Error installing JBoss BPM Suite
- SharePoint workflow task not created
- MySQL json error rails_workflow gem
- how to deploy workflow in alfresco community
- Apache Oozie as a business workflow engine
- how to set a variable in startevent in alfresco?
- Include branch name in post build event on Team Build
- Metastorm BPM 6.x where does the to-do list information comes from?
- rep_1235 this object has been modified since the time it was read
- How to check the workflow initiator is a member of a specific group in Alfresco?
- how to set return value from a method to CodeActivityContext
- NetSuite Workflow to run if Credit Card is updated
- What's a good workflow for coding a frontend for a Java EE application?
Related Questions in CAMPAIGN-MONITOR
- Trigger smart transactional email in campaign monitor from Wordpress
- How can I get Segment API ID in Campaign Monitor?
- Google analytics IOS tracking campaigns error No visible @interface for 'GAIDictionaryBuilder' declares the selector 'set:value:'
- CM forms, jQuery + $(this). Applying to all classes on page
- Keeping Track of campaign, strange behaviour from gmail
- Google CampaignTrackingReceiver working partially
- How can i know if someone has opened an email?
- How to avoid campaign goes to spam filter?
- Basic API authentication question - Campaign Monitor
- Campaign Monitor API via .NET
- return json data from string
- Webhooks for email hard-bounce in Campaign Monitor API
- Vertical 1px on image in windows outlook 07' 10' html email
- Update a subscriber custom field using campaign monitor API and python
- Unable to maintain Session in Laravel
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?
Though it is possible, you may avoid it and try to consider as @theopendle mention, a database level query.
Nevertheless, just use the Source schema (xtk:srcSchema) and you will have all the schemas listed. Then you can use that retrieved schema in your next "monitoring" process.