<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Technology Advisors for Business Consulting Services&#187; Enterprise Content Management</title>
	<atom:link href="http://technology-advisors.net/category/enterprise-content-management/feed/" rel="self" type="application/rss+xml" />
	<link>http://technology-advisors.net</link>
	<description>Guides for Risk Mgmt, Managed Services, Business Continuity Security, Information Assurance, Enterprise Content Management</description>
	<lastBuildDate>Mon, 10 May 2010 22:21:05 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<image>
<link>http://technology-advisors.net</link>
<url>http://technology-advisors.net/Business_Technology_Man.png</url>
<title>Technology Advisors for Business Consulting Services</title>
</image>
		<item>
		<title>Business Data Analysis : Comparing Data Populations with SQL</title>
		<link>http://technology-advisors.net/06/business-data-analysis-data-sql/</link>
		<comments>http://technology-advisors.net/06/business-data-analysis-data-sql/#comments</comments>
		<pubDate>Tue, 09 Jun 2009 22:17:47 +0000</pubDate>
		<dc:creator>Technology</dc:creator>
				<category><![CDATA[Business Intelligence]]></category>
		<category><![CDATA[Consolidation]]></category>
		<category><![CDATA[Project Resolution]]></category>
		<category><![CDATA[Staffing]]></category>
		<category><![CDATA[Business Data Analysis]]></category>
		<category><![CDATA[business data validation]]></category>
		<category><![CDATA[Comparing Data Populations]]></category>
		<category><![CDATA[SQL business queries]]></category>
		<category><![CDATA[SQL Business Query]]></category>
		<category><![CDATA[understanding data in business]]></category>

		<guid isPermaLink="false">http://technology-advisors.net/?p=109</guid>
		<description><![CDATA[While dealing with business data you will often times need to validated various database populations with one another. The comparison queries below are simplistic in nature but can be used in a host of business questions, solutions and resolutions. The SQL queries check and see if a record is in one population and not the [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>While dealing with business data you will often times need to validated various database populations with one another. The comparison queries below are simplistic in nature but can be used in a host of business questions, solutions and resolutions. The SQL queries check and see if a record is in one population and not the other. Below is a set of three SQL business queries which use a standard join, left join, and right join which compares two populations against each other.</p>
<p>Business Scenario: A company has a set of loans which it needs to have evaluated by a third party. The company has 1000 loan records in their database. They have received back 975 records. The goal is to research the returned loan population from the third party evaluation company.</p>
<p><strong>Individual SQL Count Query</strong>: It will be important to document how many loans are in each data population. In this business scenario, the original population results in 1000 loans and the returned population has 975 loans.</p>
<p><em>Individual SQL Count Query Example</em>:</p>
<p>select count(loan_num) from original_loan_pop</p>
<p>select count(loan_num)  from returned_loan_pop</p>
<p><strong>SQL Straight Join Query:</strong> This business related query checks to see which records are in both populations. In the business scenario, the query returns 970 records. This means of the 1000 loans sent to be evaluated, only 970 loans were sent back correctly from the original population.</p>
<p><em>SQL Straight Join Query Example</em>:</p>
<address>Select * from</address>
<address>(select * from original_loan_pop)a</address>
<address>join</address>
<address>(select * from returned_loan_pop)b</address>
<address>on a.loan_num = b.loan_num</address>
<p><strong>SQL Left Join Query with Criteria:</strong> This query looks to see which loans are in the original table, but are not in the returned table. The query in this example returns 30 loans.  This mean of the 1000 loans sent to be evaluated, 30 loans from the original population were not included.</p>
<p><em>SQL Left Join Query Example:</em></p>
<address>Select * from</address>
<address>(select * from original_loan_pop)a</address>
<address>left join</address>
<address>(select * from returned_loan_pop)b</address>
<address>on a.loan_num = b.loan_num</address>
<address>where b.loan_num is null</address>
<address> </address>
<p><strong>SQL Right Join Query with Criteria: </strong>This query looks to see which loans are in the returned table table, but are not in the original table. The query in this example returns 5 loans.  The results of this query mean the company who provided back the evaluated loan information some how added 5 loans that were not even included in the original 100o loan data set.</p>
<p><em>SQL Right Join Query Example:</em></p>
<address>Select * from</address>
<address>(select * from original_loan_pop)a</address>
<address>right join</address>
<address>(select * from returned_loan_pop)b</address>
<address>on a.loan_num = b.loan_num</address>
<address> where b.loan_num is null</address>
<address> </address>
<p><strong>Final Results and Findings</strong>: Based on the results of the data analysis above, a data analyst or business analysis could conclude that the data returned by the loan evaluation company is incomplete with data inconsistencies. Of the original 1000 loans only 970 were returned correctly, with 30 loans missing. More concerning, there were 5 loans returned which did not even exist in the companies original loan set.</p>
<address> </address>
<address style="text-align: right;">Article by <a href="      http://www.linkedin.com/in/bradysmith">Brady Smith</a><br />
</address>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-advisors.net/06/business-data-analysis-data-sql/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>Enterprise Content Management Cost &amp; ROI</title>
		<link>http://technology-advisors.net/11/ecm-cost-roi/</link>
		<comments>http://technology-advisors.net/11/ecm-cost-roi/#comments</comments>
		<pubDate>Wed, 26 Nov 2008 15:39:04 +0000</pubDate>
		<dc:creator>Technology</dc:creator>
				<category><![CDATA[Content Return On Investment]]></category>
		<category><![CDATA[Enterprise Content Management]]></category>
		<category><![CDATA[attorney fees]]></category>
		<category><![CDATA[balance sheet]]></category>
		<category><![CDATA[business functions]]></category>
		<category><![CDATA[business life cycle]]></category>
		<category><![CDATA[business process]]></category>
		<category><![CDATA[business process improvement]]></category>
		<category><![CDATA[call center]]></category>
		<category><![CDATA[customer service]]></category>
		<category><![CDATA[customer service improvements]]></category>
		<category><![CDATA[ecm]]></category>
		<category><![CDATA[investments]]></category>
		<category><![CDATA[lawyers]]></category>
		<category><![CDATA[legal proceedings]]></category>
		<category><![CDATA[life cycle issues]]></category>
		<category><![CDATA[loan application]]></category>
		<category><![CDATA[metrics]]></category>
		<category><![CDATA[process efficiency]]></category>
		<category><![CDATA[product life cycle]]></category>
		<category><![CDATA[repeat business]]></category>
		<category><![CDATA[return on investment]]></category>
		<category><![CDATA[salaries]]></category>

		<guid isPermaLink="false">http://technology-advisors.net/?p=32</guid>
		<description><![CDATA[While Enterprise Content Management (ECM) can be a costly initiative, what are the alternatives of not properly running your business? The expense of not implementing ECM tools is too regularly left unmeasured until it is too late. Without ECM, large expenses can be wasted on attorney fees, loss of customers due to customer service issues, [...]


No related posts.]]></description>
			<content:encoded><![CDATA[<p>While Enterprise Content Management (ECM) can be a costly initiative, what are the alternatives of not properly running your business? The expense of not implementing ECM tools is too regularly left unmeasured until it is too late. Without ECM, large expenses can be wasted on attorney fees, loss of customers due to customer service issues, simple business life cycle issues, cost of finding new customers, and FTE salaries.</p>
<p>All of which can result in not only loss of business but loss on income. Understanding the detriment of these latent losses will allow you to see ECM investments out weight the costs. An important measure is to define your priorities and then driving to meet them through reporting and set metrics. Goal metrics can be around business process improvement goals like call center efficiency, customer service improvements, or product life cycle improvement. Metrics around extra income or increased profits based on various business goals really proves the benefit of ECM.</p>
<p>It is important to remember, not all Enterprise Content Management improvements will be apparent financially and are considered soft costs, but the unseen improvements are worth a lot. While identifying an uptick in ROI can be obstinate, it is not impossible to see the impacts of the improved route on business. ECM tools can make your organization efficient and reduce the cost of day to day business functions. These technologies bestow treasure to your organization by more efficiently organizing information for its subsequent retrieval, use, and, disposition. ECM tools are becoming common place in standard business and it is important to keep up with business standards. Who would have thought in the past that every business needs a computer to be effective in todays marketplace. Enterprise Content Management consulting and tools are and will be just as important.</p>


<p>No related posts.</p>]]></content:encoded>
			<wfw:commentRss>http://technology-advisors.net/11/ecm-cost-roi/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
