Friday, 11 August 2017

Adobe connect 9: New Edition of the Videoconferencing Answer

The new version for corporations and government businesses around the sector, offers an all-in-one answer for the manufacturing of comprehensive Webinars, and improvements in collaboration and cell studying.

"The use of Adobe connect nine for Webinars allows entrepreneurs lessen prices and dependence on IT times for growing rich company registration pages and optimizing occasion promotions thru analytical capabilities. With the power of Adobe CQ web content control and on line evaluation of Adobe SiteCatalyst®, Adobe join nine enables the development of microsites and occasion emails, tailored, interactive occasion transport for up to 1500 contributors and dimension The effectiveness of the marketing campaign and the speaker, "says Guillermo Sierra, director of OFIR ( http://ofirsrl.com/ ), the leader in communications optimization and development of e-mastering techniques in Latin the united states, and companion From Adobe to Latin the usa.

at the side of the brand new Adobe join cell 2.zero, Adobe join 9 additionally permits businesses to take their cellular business techniques to the following level with cellular-to-mobile collaboration for tablets and smartphones. users of Apple iOS, Android and BlackBerry PlayBook devices now have the power and strength to host online meetings and collaborate as they would from their desktops.

similarly, Adobe join 9 offers the e-getting to know industry extra abilties for cellular getting to know as it enables instructors to deliver virtual classes at once from gadgets and students to take part from their capsules or smartphones. The present day version supports HTML5 content, consisting of that generated with aem training online innovative Suite® software, as well as SCORM 1.2 and 2004 content, extensively used for web-primarily based getting to know.

These are the most important capabilities of Adobe connect  nine:

• event Log Pages and custom Catalogs - Templates permit short creation of begin pages, speaker statistics, registration and access pages. They may be customized the use of wealthy additives such as photos, tables, charts and carousels.

• Template-based totally electronic mail content - whether or not fashionable or custom, e-mail templates can be developed fast and without difficulty the use of the brand new drag-and-drop skills. it is possible to create email triggers for specific agencies of statistics at predetermined times.

• Interrelationship Panel - reveal the attractiveness of your occasion in real time. A coloration-coded meter facilitates the organizer to music the effectiveness of the message. it's far feasible to display key statistics to improve future occasions.

• online Analytics - event organizers can examine the connection with the player and pick out the best assembly factors and topics. Dynamic analytics talents offer real-time statistics about the overall performance of character advertising promotions and programs in standard.

• advanced mobile assembly and training guide - meeting organizers revel in greater flexibility to present from cellular devices, taking gain of blackboard and annotation tools and the capacity to percentage documents from tablets in addition to from the cloud. teachers can control digital school rooms from gadgets with the equal presentation and change options, in addition to controls for destroy rooms.

"Net conferencing is now key and key processes for each agencies and government groups, and agencies rely upon them for schooling, worker collaboration, and networking with citizens. In parallel, the capability to collaborate from cell devices is becoming imperative. Adobe connect nine helps main organizations via offering them with a unified answer for rich Webinars, eLearning and internet meetings whenever, anywhere and on any tool, "stated Arun Anantharaman, vice president and popular manager, Adobe.

"With the emergence of cellular era and the expectancy of going beyond simple screen sharing, web conferencing requirements have advanced," said Melissa Webster, vp of content and digital Media technology at IDC. notably for state-of-the-art companies. Adobe join has been utilized by businesses to improve communique and collaboration among personnel, customers and residents for decades. It is right to see that Adobe responds to the non-stop evolution with this new edition and the updates to its Webinars answer, "he stated.

For Jana Kodel, undertaking improvement manager for Mrs. Fields well-known manufacturers, "Adobe join 9 will save you time and money on the subject of developing pages for custom Webinars with their incorporated and wealthy microsite introduction equipment. further, the brand new Adobe connect templates will make my internal crew create compelling corporate content for every event. this is a outstanding gain because it improves the recruitment and revel in of our assistants, "he said.

Wednesday, 9 August 2017

Essential Tips for Using Apache Drill with OBIEE 12c

Apache Drill allows querying with sq. against a mess of data assets, consisting of JSON documents, Parquet and Avro, Hive tables, RDBMS, and more. MapR has launched an ODBC driving force for it, and that i idea it'd be neat to get it to paintings with OBIEE. It obviously does work for OBIEE walking on windows, however I desired for you to apply it to my trendy environment, Linux.
For greater data on Apache Drill, see my previous put up, creation to Apache Drill.
OBIEE 12c (and 11g and 10g earlier than it) helps three primary methods of connecting to facts assets:
Local Gateway, consisting of OCI for Oracle. this is constantly the preferred choice, as it offers the finest help and performance.
facts Direct ODBC Drivers, a fixed of that are bundled with OBIA for allowing connectivity to sources which includes sq. Server, MySQL, Hive, and Impala. The configuration of these is documented in the OBIEE manuals, and is generally a supported configuration.
local ODBC Drivers.
To get OBIEE to paintings with Apache Drill, we're going to use the third choice - native ODBC drivers. i'm doing this on SampleApp v511. For a geek-out on information of the technique I went through and diagnostics used to get this to work, see here.
_Update: Fiston has written up an incredible weblog submit displaying how JDBC can be used to connect OBIEE 12c to Apache Drill - very cool!_
First matters First - setting up Apache Drill
Drill can be deployed in allotted configuration (with all the parallel processing goodness which that brings), but also run as a unmarried example domestically. For the sake of simplicity, that's what i am going to do right here. it is rather easy to do:

# Download Apache Drill
wget http://www.apache.org/dyn/closer.cgi/drill/drill-1.7.0/apache-drill-1.7.0.tar.gz
# Unpack
tar -xvf apache-drill-1.7.0.tar.gz
# Run
cd /opt/apache-drill-1.7.0/ && bin/sqlline -u jdbc:drill:zk=local
You need to make sure you've got a recent JDK available, and if you're running it on BigDataLite VM, watch out for this odd problem that I had which was related to classpaths and maniested itself with the error java.lang.NoSuchMethodError:
com.fasterxml.jackson.databind.JavaType.isReferenceType()Z.
All being well, you'll now have a Drill prompt:
Java HotSpot(TM) 64-Bit Server VM warning: ignoring option MaxPermSize=512M; support was removed in 8.0
Aug 09, 2016 5:51:43 AM org.glassfish.jersey.server.ApplicationHandler initialize
INFO: Initiating Jersey application, version Jersey: 2.8 2014-04-29 01:25:26...
apache drill 1.7.0
"say hello to my little drill"
0: jdbc:drill:zk=local>
From here you can run a simple query to check the version:
0: jdbc:drill:zk=local> SELECT version FROM sys.version;
+----------+
| version  |
+----------+
| 1.7.0    |
+----------+
1 row selected (0.392 seconds)
or query one of the built-in sample data sets:
0: jdbc:drill:zk=local> select count(*) from cp.`employee.json`;
+---------+
| EXPR$0  |
+---------+
| 1155    |
+---------+
1 row selected (0.977 seconds)