Componet Template and linked schema details in Tridion 2011 tables - tridion-2011

We want extract all the Component templates and Linked schema details. Could any one please let me know script to extract these details from Tridion 2011 database.
Thanks

I would suggest posting this at https://tridion.stackexchange.com/
The easiest way to extract data from SDL Tridion is to use the content Porter. You could export all of the Components and their dependencies as a package. Butr without more information on what you want to do with the data it is hard to know if this would meet your requirements.
IN the old PowerTools there was a tool which gave an overview of what you wanted, but I don't know if it worked with 2011 (I guess not). You may be able to adapt one of the old script from there if you are in a rush. Otherwise I suggest using the Core Service API to just get all of the CTs for a publication, and create a report on their data yourself.

Related

Migrate analytics data from Webtrekk to Adobe Analytics

As a premise... I'm definitely not an analytics expert, so I might be going in the wrong way. Let me know if my question just doesn't make sense :)
A customer is currently using WebTrekk to collect marketing data. They just bought Adobe Analytics, and we have to activate it by the end of may.
They asked us to import data for the initial months of 2015 from webtrekk to Adobe, because they want to have the data for the whole year.
Now, I've found a way (Data Sources) to send batch data to Adobe Analytics. I've not found a way to download "raw" data (i.e. not aggregated in reports) from WebTrekk.
Do you know if there is a way to download such data? Or could you suggest me the correct way to handle this kind of situations?
Thanks a lot!
There are several ways of exporting data from Webtrekk, but the kind of raw data export you're asking about has to be enabled in the account. You should check with the representative that manages your customer.
You can use Full Processing Data Sources to import data in Adobe Analytics. Contact WebTrekk to get the old log file (hit data) and import it into Adobe Analytics through Full processing Data Sources.

Application to display information from database

I understand that this is a very broad question and could get flagged but I need inputs from experienced programmers and will ask it anyway. If there is another forum where I can post this question, please let me know.
Currently we manage all our application information in an Excel spreadsheet. At a high level it contains an app id, the server names that it is hosted on and the name of the environment. The Excel spreadsheet has become too large and I am looking to build a simple application for it.
Ideally, I would like to write this app on Windows as everyone uses Windows but dont know how to go about it in Windows. I then thought of using MySQL and PHP or Perl (CGI) to build this but thought of exploring something new. I read about Joomla and a few other CMS products which make it very easy to build websites but am not sure whether these allows me to pull information from a database.
I am seeking inputs on what would be a good way to way to build this application.
Use Joomla! CMS is a good choice and to pull data from database you may use webservice calls. So, you will able to create a CMS website using joomla and will able to pull data easily from database with the help of webservice.
You can get webservice support in joomla by installing component redCORE in joomla.
Component: https://github.com/redCOMPONENT-COM/redCORE
Wiki: http://redcomponent-com.github.io/redCORE/?chapters/webservices/overview.md
Other videos: https://www.youtube.com/watch?v=UzJkC7f9fJE
https://www.youtube.com/watch?v=1NRT5jh3Ewc
Joomla dev group discussion https://groups.google.com/d/msg/joomla-dev-cms/3OctbkIZlQw/5d_1MLrzbgYJ
You can also post questions in Joomla forum http://forum.joomla.org/
I think Joomla is a great option to handle big loads of information. If you already know PHP and don't need to reinvent the wheel, it's cool. The way of handling data in Joomla is using Components.
If you want to try, it would be as easy as installing a local copy of Joomla, building the field structure on component-creator.com installing it and importing the data inside the component using phpmyadmin.

building torrent provider website

Recently i have been given a project that is torrent provider just like torrentz.eu, thepiratebay etc, where anyone can search what they want to download and then get the download like with the help of torrent.
I don't know the concept behind this, what is the basic requirement and what is the process to make it done. i have searched over Google but didn't find any relevant answer related to my problem.
I just want to know the process and what i really need to do to make it done. technology i will use that is spring framework.
Thanks
This is not really an Spring specific question but I'll try to help you.
You just need to save the torrent file (a text file with information needed by torrent clients) in a database along with information about the torrent like a representative name, a date and not much more. You could do this using Spring Data JPA for example. This way you won't need SQL knoledges.
If you want a site like torrentz.eu, you will also need to fetch data about the torrent like peers. You can store this also in the database but you will have to update it periodically. To do this, there are APIs like Bitsnoop that return this kind of information.
Having this, you'll need only some controller mappings to show your home and to let users search torrents given a name (the one that your saved before).
Well, first you need to know that Torrentz and ThePirateBay are 2 different things.
Torrentz is a search engine (like google) that searches for torrent files.
ThePirateBay - in past .torrent files hoster, now a simple Magnet linker.
All you need is a website with a huge .torrent files database.
Also a good hosting in a not online controlled country, so you don't get in trouble just like the most popular torrent website (thepiratebay.se / torrentz.com / kickasstorrents.com ...)
Of course they are still online, but that's just because they have a big fan base that keeps creating mirrors and proxies (https://viralifyblog.wordpress.com/2017/06/19/thepiratebay-proxy-list/)
Finally. I don't recommend creating a torrents website.

Analyzing community builder database

My server is Joomla 2.5, the version of CB is 1.8.1 and it runs on a MySQL database.
I would like to analyze the data in my database and create simple reports, for example: a list of all email addresses of all subscribers in a given period in time.
Is the right tool for this available in CB, in Joomla as an extension or should I go for a separate tool to dive into the database directly?
I searched in the CB site for reporting but didn't find a plugin for it, did find some 'advanced search' extensions for Joomla but they do not support reports as such.
I had to write custom components for this kind of requirements a few times, if you are familiar with Joomla coding I strongly suggest this approach it will be the most effective unless you need strong business intelligence, in which case you'd better switch to a bi tool.
The difference is: if you can pull all the data you need with just a few simple queries, write them yourself; if you need to analyze data, use a proper tool.
If you however are not a developer you might get away with a reporting tool, or a versatile CCK for Joomla.
Community Builder won't do this on it's own.
The easiest and quickest way to achieve this is to use an extension like ChronoForms and/or ChronoConnectivity which can help retrieve and display the required data from one or more tables.
ChronoForms: http://extensions.joomla.org/extensions/contacts-and-feedback/forms/1508
ChronoConnectivity: http://extensions.joomla.org/extensions/directory-a-documentation/directory/5661
These extensions make it easy to restrict a report to a particular group etc without having to write code.
There are plenty of examples in the chronoengine.com FAQs and the forum if you need help.
Probably the original question is not valide anymore, about an year later, but now there is a component that does what you need if you use ”registerDate” field as search criteria. The name of the component is JEmbedAll and you can find more information about that here: http://www.goldengravel.eu/jembedall-manual#.VVph_bvyNC0

Can Oracle UCM Web Form store/retrieve data directly into/from database

I have found several articles mentioning that using "UCM Web Forms" you can easily provide and interface for contributor to enter data in a specific format(split into specific fields).
In my case the data for some of the fields(e.g. drop-downs) have to be taken out from a database. And when the form is submitted it will be nice if the data is stored in the DB too, so is this possible with these web forms.
Also it will be great if someone can provide a link to a demo/tutorial/working example of using UCM Web Forms.
http://blogs.oracle.com/kyle/entry/adding_ucm_web_forms_to_site_s
Gives an explanation and example.
Hopefully this helps whoever stumbles on this question.
Oracle UCM provides a mechanism to check in documents but no to manipulate directly database entries. You have to write your own code to manipulate the form/data or use a Java framework for this.

Resources