Featured Post

Python Set Operations Explained: From Theory to Real-Time Applications

Image
A  set  in Python is an unordered collection of unique elements. It is useful when storing distinct values and performing operations like union, intersection, or difference. Real-Time Example: Removing Duplicate Customer Emails in a Marketing Campaign Imagine you are working on an email marketing campaign for your company. You have a list of customer emails, but some are duplicated. Using a set , you can remove duplicates efficiently before sending emails. Code Example: # List of customer emails (some duplicates) customer_emails = [ "alice@example.com" , "bob@example.com" , "charlie@example.com" , "alice@example.com" , "david@example.com" , "bob@example.com" ] # Convert list to a set to remove duplicates unique_emails = set (customer_emails) # Convert back to a list (if needed) unique_email_list = list (unique_emails) # Print the unique emails print ( "Unique customer emails:" , unique_email_list) Ou...

QlikView Server vs Publisher Top Differences Really Useful to Your Project

The differences between QlikView Server and publisher, I have given for your reference. These are related to internally how differ each other.




QLIKVIEW SERVER


  • The QVS is a server-side product. It contains an in-memory analytics engine, which handles all client/server communication between a QlikView client (Desktop, IE plugin, AJAX, or Mobile) and the server.
  • The Administrator can have access to the management console to control all aspects of the server deployments (including security, clustering, distribution, etc.) 
  • It also includes a web server to provide front-end access to the documents within.
  • The web server’s user portal is known as Access Point. (It’s important to note that while the QVS contains its web server, one can utilize Microsoft IIS (Internet Information Server) for this purpose, too).
  • The QVS handles client authorization against existing directory providers (Microsoft Active Directory, eDirectory)
  • It also performs read and write to ACLs (access control lists) for QVW documents.



QlikView Server vs Publisher
Qlikview

QLIKVIEW PUBLISHER


  1. The QlikView Publisher is a server-side product.
  2. It can use to load data directly from data sources defined via connection strings in the source QVW files. 
  3. It is also used as a distribution service to reduce data and applications from source QVW files based on various rules (such as user authorization or data access privileges) and to distribute these newly-created documents to the appropriate QlikView Servers or as static PDF reports via email.
  4. Data sources that you can access in QlikView are standard ODBC (OLEDBcompliant databases), standard flat files ( Microsoft Excel and XML), and from systems such as SAP NetWeaver, Salesforce.com, and Informatica.

Keep Reading

Comments

Popular posts from this blog

SQL Query: 3 Methods for Calculating Cumulative SUM

Big Data: Top Cloud Computing Interview Questions (1 of 4)

5 SQL Queries That Popularly Used in Data Analysis