<?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>IT Vizion</title>
	<atom:link href="http://itvizion.com/feed" rel="self" type="application/rss+xml" />
	<link>http://itvizion.com</link>
	<description>Contact us: 1.877-488-4946</description>
	<lastBuildDate>Tue, 31 Jan 2012 05:15:45 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>Unable to Create Signatures in Outlook 2010</title>
		<link>http://itvizion.com/unable-to-create-signatures-in-outlook-2010</link>
		<comments>http://itvizion.com/unable-to-create-signatures-in-outlook-2010#comments</comments>
		<pubDate>Wed, 04 Jan 2012 23:26:01 +0000</pubDate>
		<dc:creator>jvandale</dc:creator>
				<category><![CDATA[Help Desk Support]]></category>
		<category><![CDATA[Managed Services]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3737</guid>
		<description><![CDATA[We came across a strange issue recently regarding users who were unable to create signatures in Outlook 2010. Anytime a user would open &#8220;Signatures and Stationery&#8221; and click New, nothing would happen. Resolution of this issue was a high priority as affected users included the executives of a  [...]]]></description>
			<content:encoded><![CDATA[<p>We came across a strange issue recently regarding users who were unable to create signatures in Outlook 2010. Anytime a user would open &#8220;Signatures and Stationery&#8221; and click New, nothing would happen. Resolution of this issue was a high priority as affected users included the executives of a managed company. The environment was relatively straight forward. Our users used Outlook on Windows XP x64 and Window 7 x64 systems. Their application data was redirected to a common file share.</p>
<p>There were multiple complaints across the internet regarding this issue and few helpful suggestions for resolution. Downgrading to Outlook 2007 or moving to 64bit Office were not options for us. We determined that finding the cause of the problem and developing our own solution was the best way to go.</p>
<pre>We discovered from a Microsoft KB article that when a user created a signature, Outlook's editor created files for the signature in the user's application data folder at \appdata\Microsoft\Signatures. As mentioned previously, our users' appdata folders were redirected to the common file share. Users had full permissions for every level of their own redirected folder. However when the Signatures folder was generated by Outlook, the permissions on the folder did not inherit from the parent folder, Microsoft. The Creator/Owner was allowed full permissions for subfolders and files of the Signatures folder, but was given no permissions for the folder itself. Without the permissions on the folder to create files, the Signature files would not create. The workaround was to manually add permissions at the folder level for Signatures. This was not the optimal solution considering multiple users had this problem, but this served as a workaround until the issue in Outlook 2010 could be fixed.</pre>
<p>Need assistance with this issue or others? <a href="/contact">We&#8217;re here to help</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/unable-to-create-signatures-in-outlook-2010/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>EXP using 9.2.0.1 client from an 11.2.0.3 database</title>
		<link>http://itvizion.com/exp-9-2-0-1-client-from-an-11-2-0-3-database</link>
		<comments>http://itvizion.com/exp-9-2-0-1-client-from-an-11-2-0-3-database#comments</comments>
		<pubDate>Thu, 01 Dec 2011 16:58:33 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database Consulting]]></category>
		<category><![CDATA[11.2.0.3]]></category>
		<category><![CDATA[550740.1]]></category>
		<category><![CDATA[9.2.0.1]]></category>
		<category><![CDATA[exp]]></category>
		<category><![CDATA[export]]></category>
		<category><![CDATA[imp]]></category>
		<category><![CDATA[import]]></category>
		<category><![CDATA[oracle]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3521</guid>
		<description><![CDATA[When trying to export data from an 11.2.0.3 database using the Oracle 9.2.0.1 client, our dmp files were 12k and the log file was 0 bytes.  The Metalink Note: 550740.1 helped resolve this issue.
1. Connect to the 11.2.0.3 database as SYSDBA through SQL*Plus
2. Change the definition of view  [...]]]></description>
			<content:encoded><![CDATA[<p>When trying to export data from an 11.2.0.3 database using the Oracle 9.2.0.1 client, our dmp files were 12k and the log file was 0 bytes.  The <a title="Oracle Metalink" href="http://support.oracle.com" target="_blank">Metalink</a> Note: 550740.1 helped resolve this issue.</p>
<p>1. Connect to the 11.2.0.3 database as SYSDBA through SQL*Plus</p>
<p>2. Change the definition of view EXU9DEFPSWITCHES<br />
<em><strong>From</strong></em></p>
<pre>CREATE OR REPLACE VIEW exu9defpswitches (
compflgs, nlslensem ) AS
SELECT a.value, b.value
FROM sys.v$parameter a, sys.v$parameter b
WHERE a.name = 'plsql_compiler_flags' AND
b.name = 'nls_length_semantics'
</pre>
<p><em><strong>To</strong></em></p>
<pre>CREATE OR REPLACE VIEW exu9defpswitches (
compflgs, nlslensem ) AS
SELECT a.value, b.value
FROM sys.v$parameter a, sys.v$parameter b
WHERE a.name = 'plsql_code_type' AND
b.name = 'nls_length_semantics'
</pre>
<p>3. Re-run the EXP job using the 9.2.0.1 client</p>
<p>Need help?  For free development help, leave a comment.  Alternatively contact us to see how we can help your organization with Oracle database management and support.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/exp-9-2-0-1-client-from-an-11-2-0-3-database/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>MPLS  (My Perfect Little Solution)</title>
		<link>http://itvizion.com/mpls-my-perfect-little-solution</link>
		<comments>http://itvizion.com/mpls-my-perfect-little-solution#comments</comments>
		<pubDate>Sat, 27 Aug 2011 00:21:49 +0000</pubDate>
		<dc:creator>jvandale</dc:creator>
				<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[mpls]]></category>
		<category><![CDATA[qos]]></category>
		<category><![CDATA[vpn]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3171</guid>
		<description><![CDATA[Of course, this is not the correct meaning of MPLS, but please read on to discover our experience in implementing this solution.
In the last year, a client company began to experience the pains of its increasing business needs not being met by the limited nature of its IT infrastructure. One of the  [...]]]></description>
			<content:encoded><![CDATA[<p>Of course, this is not the correct meaning of MPLS, but please read on to discover our experience in implementing this solution.</p>
<p>In the last year, a client company began to experience the pains of its increasing business needs not being met by the limited nature of its IT infrastructure. One of the issues was the quality of the WAN links between its three offices. The company was using a single T1 at each of the three offices and IPSec VPNs that logically connected their office networks. Several problems arose after applications were added to the company network. The applications did not require much bandwidth as could be seen from bandwidth measurements, however the WAN links lacked the Quality of Service (QoS) very much needed by these applications. For example, the company had begun using VOIP phones at each of the offices, and the VOIP server was located at the main office. Call quality at the satellite offices was extremely poor. The line of business application also suffered from poor response time as the application server was also located at the main office. Network latency and the lack of QoS over the WAN links was limiting the productivity of the satellite offices.</p>
<p>We assisted the client company in migrating to a better internet solution for improved connectivity between the three offices. An ISP offered their MPLS (MultiProtocol Label Switching) solution at a reasonable cost. Simply put, MPLS provides faster direct connections between labeled endpoints (or routers) effectively providing an IP VPN. The need for encryption is removed from the data stream, and routing within the network is streamlined. Security of the data is maintained through proper management of the MPLS routers by the ISP. QoS is also included on the MPLS network for improved management of network traffic.</p>
<p>The decision was made to implement MPLS at each office. As the MPLS network did not provide internet connectivity, we maintained the internet connected T1 at the main office. The implementation of the solution was technically simple requiring little added hardware at the main office and some reconfiguration of the routers at the satellite offices. We were also able to eliminate the VPN endpoint devices between the networks. The QoS built into the network greatly improved the flow of data required by the VOIP and line of business applications.</p>
<p>In the end, the client appreciated the results of My Perfect Little Solution (aha!). Employees were able to work more effectively, and fewer issues regarding slowness were being reported to our Desktop Support technicians. <a title="Contact IT Vizion" href="/contact">How can we help you</a>?</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/mpls-my-perfect-little-solution/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to duplicate database for standby</title>
		<link>http://itvizion.com/how-to-duplicate-database-for-standby</link>
		<comments>http://itvizion.com/how-to-duplicate-database-for-standby#comments</comments>
		<pubDate>Thu, 18 Aug 2011 17:43:41 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database Consulting]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[11g]]></category>
		<category><![CDATA[database]]></category>
		<category><![CDATA[duplicate]]></category>
		<category><![CDATA[from active]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[standby]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3201</guid>
		<description><![CDATA[This is not the first scratchpad sample of duplicating a database for standby you&#8217;ve seen, and by no means comes close to the official Oracle documentation.  Its intention is simply for those that don&#8217;t use this process often and need a quick reference.
1. You need to startup nomount the standby  [...]]]></description>
			<content:encoded><![CDATA[<p>This is not the first scratchpad sample of duplicating a database for standby you&#8217;ve seen, and by no means comes close to the official Oracle documentation.  Its intention is simply for those that don&#8217;t use this process often and need a quick reference.</p>
<p>1. You need to <span class="highlight">startup nomount</span> the standby instance with the bare minimum requirements</p>
<p>DB_NAME=&#8217;dbstdby&#8217;<br />
DB_UNIQUE_NAME=&#8217;dbstdby&#8217;<br />
DB_CREATE_FILE_DEST=&#8217;C:\Oracle\dbdata\&#8217;</p>
<p>2. Connect to rman (in this case with nocatalog)</p>
<p><span class="highlight">rman TARGET sys/pwd@db1 AUXILIARY sys/pwd@dbstdby</span></p>
<p>3. Run your duplicate script (make any other necessary changes for your environment)</p>
<pre>
RUN {
ALLOCATE AUXILIARY CHANNEL c1 DEVICE TYPE DISK;
ALLOCATE CHANNEL c2 DEVICE TYPE DISK;
DUPLICATE TARGET DATABASE
FOR STANDBY
FROM ACTIVE DATABASE
DORECOVER
SPFILE
SET db_unique_name='dbstdby'
set db_file_name_convert='C:\Oracle\dbdata\db1\DATAFILE','C:\Oracle\dbdata\dbstdby\DATAFILE'
set log_file_name_convert='C:\Oracle\dbdata\db1\ONLINELOG','C:\Oracle\dbdata\dbstdby\ONLINELOG'
set control_files='C:\Oracle\dbdata\dbstdby\stby_control01.ctl'; }
</pre>
<p><strong>Need help?</strong>  Free development help, leave a comment or <a title="RMAN duplicate database help" href="/contact">contact us</a> to see how we can help your organization with Oracle database management and support.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/how-to-duplicate-database-for-standby/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Find table used in another object</title>
		<link>http://itvizion.com/find-table-used-in-another-object</link>
		<comments>http://itvizion.com/find-table-used-in-another-object#comments</comments>
		<pubDate>Wed, 10 Aug 2011 05:54:07 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database Consulting]]></category>
		<category><![CDATA[DBA]]></category>
		<category><![CDATA[dba_dependencies]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[referenced_name]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3505</guid>
		<description><![CDATA[To find in which other objects  (procedure, function, etc.) a specified table is being used in, simply run:
select owner, name, referenced_owner, type
from dba_dependencies where referenced_name =&#8217;TABLE_SO_AND_SO&#8217;;
]]></description>
			<content:encoded><![CDATA[<p>To find in which other objects  (procedure, function, etc.) a specified table is being used in, simply run:</p>
<p><span class="highlight">select owner, name, referenced_owner, type<br />
from dba_dependencies where referenced_name =&#8217;TABLE_SO_AND_SO&#8217;;</span></p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/find-table-used-in-another-object/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Excel Documents Slow to Load: Office File Validation</title>
		<link>http://itvizion.com/excel-documents-slow-to-load-office-file-validation</link>
		<comments>http://itvizion.com/excel-documents-slow-to-load-office-file-validation#comments</comments>
		<pubDate>Sat, 06 Aug 2011 15:27:11 +0000</pubDate>
		<dc:creator>jvandale</dc:creator>
				<category><![CDATA[Help Desk Support]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[excel]]></category>
		<category><![CDATA[KB2501584]]></category>
		<category><![CDATA[MS11-021]]></category>
		<category><![CDATA[Office File Validation]]></category>
		<category><![CDATA[OFV]]></category>
		<category><![CDATA[slow]]></category>
		<category><![CDATA[tips]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3144</guid>
		<description><![CDATA[We all try to follow conventional wisdom by pushing out security updates and new features for our application. However, what do we do when one of these updates causes our application to slow down or even hang? This type of issue caused a little bit of a headache for some of our Microsoft Excel 2003  [...]]]></description>
			<content:encoded><![CDATA[<p>We all try to follow conventional wisdom by pushing out security updates and new features for our application. However, what do we do when one of these updates causes our application to slow down or even hang? This type of issue caused a little bit of a headache for some of our Microsoft Excel 2003 users.</p>
<p>Recently, IT Vizion pushed out Office File Validation (OFV) for Microsoft Office 2003 and 2007 per Microsoft KB2501584. For improved application security, OFV checks a file for expected behavior prior to opening the file. This feature was already built into Office 2010, and we decided to include this functionality for users who have not yet upgraded to the latest Office version. Soon thereafter, IT Vizion also pushed out Microsoft update MS11-021, a fix for Excel that resolved multiple security vulnerabilities.</p>
<p>Taken separately, nothing appeared to be wrong with installing these updates. However, we later determined through research that OFV was causing a specific problem for some of our users.</p>
<p>When attempting to open Excel files from a network share, users were waiting several minutes for the files to open. The files were between only 3-5MB in size, and they were being worked on from an available network share over a fast ethernet network. This problem became annoying as we were able to eliminate multiple possible causes including antivirus scanning and network bandwidth issues.</p>
<p>We were able to determine through research that this was being experienced by other support groups and users across the internet as well. Some had suggested uninstalling MS11-021 as a simple fix, but this did not seem to resolve the problem for us. Fortunately Microsoft released an article on this specific issue soon after first report of the problem. Article 2570623 provided both an automated and manual fix. We found that the fix worked, but required administrator access to the machine. Given that the fix alters the HKEY_CURRENT_USER registry hive, the fix is per user and of course most of our supported users are not local administrators. The best solution was to include in user logon scripts a check for the version of Office and install of a registry file for making the necessary alterations using administrative credentials.</p>
<p>For the explanation and fix from Microsoft, please see the article mentioned above at <a href="http://support.microsoft.com/kb/2570623">http://support.microsoft.com/kb/2570623</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/excel-documents-slow-to-load-office-file-validation/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Windows 7: All Devices in Network Connections default to a “Public” network type</title>
		<link>http://itvizion.com/windows-7-all-devices-in-network-connections-default-to-a-public-network-type</link>
		<comments>http://itvizion.com/windows-7-all-devices-in-network-connections-default-to-a-public-network-type#comments</comments>
		<pubDate>Sat, 06 Aug 2011 01:15:07 +0000</pubDate>
		<dc:creator>jkilgore</dc:creator>
				<category><![CDATA[Help Desk Support]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[network connections]]></category>
		<category><![CDATA[network type]]></category>
		<category><![CDATA[public]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[windows 7]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3148</guid>
		<description><![CDATA[Introduction
This is a fairly common problem when you allow employees to use their personal Windows 7 laptops on a corporate network. This occurs due to a misconfiguration when a user is selecting their network type whereby they select the option “Treat all future networks that I connect to as  [...]]]></description>
			<content:encoded><![CDATA[<p><strong>Introduction</strong><br />
This is a fairly common problem when you allow employees to use their personal Windows 7 laptops on a corporate network. This occurs due to a misconfiguration when a user is selecting their network type whereby they select the option “Treat all future networks that I connect to as public, and don’t ask me again”</p>
<p><strong>Symptom</strong><br />
When connecting a new networking device to your computer, the Operating System defaults that device automatically to “Public Mode” and does not allow that devices network type to be changed.</p>
<p><strong>Resolution</strong><br />
There are two ways to address this problem.</p>
<p>Fix 1:Automatic Fix<br />
The automatic fix is located on Microsoft&#8217;s website at <a href="http://go.microsoft.com/?linkid=9779407" target="_blank"><span class="highlight">http://go.microsoft.com/?linkid=9779407</span></a></p>
<p>Fix 2: Manual Fix<br />
<span class="highlight"><br />
1. Access Device Manager and Disable all the Network Adapters<br />
2. Enable the device you are trying to change<br />
3. Go to Network and Sharing Center, choose the option “What is a network location”<br />
4. Select the type of network you would like that device to use<br />
</span><br />
Leave a comment if you have any issues and we&#8217;ll try to help you. Interested in a long term expert provider to help you when needed most? <a title="Contact IT Vizion" href="/contact">Contact us</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/windows-7-all-devices-in-network-connections-default-to-a-public-network-type/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I’m Infected, What do I do?</title>
		<link>http://itvizion.com/i-am-infected-what-do-i-do</link>
		<comments>http://itvizion.com/i-am-infected-what-do-i-do#comments</comments>
		<pubDate>Mon, 25 Jul 2011 19:06:10 +0000</pubDate>
		<dc:creator>jkilgore</dc:creator>
				<category><![CDATA[Help Desk Support]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[antivirus]]></category>
		<category><![CDATA[cleanup]]></category>
		<category><![CDATA[prevention]]></category>
		<category><![CDATA[removal]]></category>
		<category><![CDATA[virus]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3123</guid>
		<description><![CDATA[In the field of Information Technology there is one thing that everyone dreads, but few seldom escape and that is the computer virus. Viruses and those that create them have become evermore proficient when it comes to infiltrating and compromising corporate network and the intellectual property  [...]]]></description>
			<content:encoded><![CDATA[<p>In the field of Information Technology there is one thing that everyone dreads, but few seldom escape and that is the computer virus. Viruses and those that create them have become evermore proficient when it comes to infiltrating and compromising corporate network and the intellectual property held therein. With the computer virus being so dangerous, what do I do if I get one.</p>
<p>There are several steps that you must take to ensure that your company remains protected in the event of a computer virus. Below I will identify universal steps that you can use to detect, identify, and remove a threat to your corporate computer.</p>
<p>• Disable Network Access<br />
• Identify the Threat<br />
• Remove the Threat</p>
<p>Disable Network Access:<br />
Disabling an infected computers access to your corporate network is paramount. A virus is designed with two objectives in mind. These objectives are survival and delivering its payload. While a infected computer is connected to the network it is a potential conduit in which your company can loose intellectual property. If you Disable that connection then you have in effect limited your exposure to that one computer.</p>
<p>Identification and Removal of the Threat:<br />
Just like in the weekly crime dramas on TV in order to catch a criminal you must first know who he is. This being the case, how can you tell which virus is which? The first and easiest way would be though the use of your companies’ virus detection software. This software is designed to scan every file on your computer and search files for matching virus characteristics. This process will be able to identify the virus and remove it 85% &#8211; 90% of the time. If the scan completes and nothing is found this does not mean that you are not infected. If your computer is still exhibiting symptoms and your computer either found and removed or did not find anything at all, then you can proceed to our second recommendation. This would require the use of another virus detection application.</p>
<p><b>Need help?</b>  Count on IT Vizion to help you prevent infections and assist in removing them when needed. Contact us at 877-488-4946 or <a href="/contact">use our online form</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/i-am-infected-what-do-i-do/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>I&#8217;m Talking, But Is Anybody Listening?</title>
		<link>http://itvizion.com/im-talking-but-is-anybody-listening</link>
		<comments>http://itvizion.com/im-talking-but-is-anybody-listening#comments</comments>
		<pubDate>Tue, 19 Jul 2011 21:11:56 +0000</pubDate>
		<dc:creator>jvandale</dc:creator>
				<category><![CDATA[Managed Services]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=3116</guid>
		<description><![CDATA[Commonly used operating systems and applications have the ability to output notifications, or events, to log files especially when bad things occur. For example, the more familiar of the loggers is the Windows Event Viewer. When the operating system or application has something to report, the event  [...]]]></description>
			<content:encoded><![CDATA[<p>Commonly used operating systems and applications have the ability to output notifications, or events, to log files especially when bad things occur. For example, the more familiar of the loggers is the Windows Event Viewer. When the operating system or application has something to report, the event is categorized, stamped, and written. But when was the last time that you actually took a minute to peruse your Event Viewer? Are you ever reading through the multitude of errors and warnings presented to you prior to a problem becoming noticed? Some logged output is so bewildering to read that it might as well be written in a foreign language anyway.</p>
<p>The <a title="Managed IT Services" href="/managed-it-services">Managed Service</a> offered by IT Vizion includes monitoring of events generated by the Windows operating system and any application that outputs text-based logging. This includes automated alerting for errors output by SQL and Oracle databases, Exchange mail servers, and of course the Windows Event Viewer. With the Managed Service, IT Vizion automatically collects and monitors logged information, and the Support Team is alerted by email when an error condition occurs. The appropriate action is immediately taken to correct the error condition and prevent further issues.</p>
<p>With IT Vizion serving your needs, you do not have to strain your eyes to the point of blindness while manually parsing a log file. Feel secure in the knowledge that someone is there, ready to listen to the pains expressed by your application. <a title="Contact IT Vizion" href="/contact">Contact us </a>to learn more.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/im-talking-but-is-anybody-listening/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Provide Function with Convenience, Reduce Cost</title>
		<link>http://itvizion.com/provide-function-with-convenience-reduce-cost</link>
		<comments>http://itvizion.com/provide-function-with-convenience-reduce-cost#comments</comments>
		<pubDate>Thu, 03 Mar 2011 23:35:24 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Database Consulting]]></category>
		<category><![CDATA[Managed Services]]></category>
		<category><![CDATA[application management]]></category>
		<category><![CDATA[application outsourcing]]></category>
		<category><![CDATA[database hosting]]></category>
		<category><![CDATA[database support]]></category>
		<category><![CDATA[dba outsourcing]]></category>

		<guid isPermaLink="false">http://itvizion.com/?p=2915</guid>
		<description><![CDATA[Information Technology (IT) is a vital, operational element of most companies. Many companies would not be able to function without the applications and systems on which they rely to deliver their product. However, IT is not where these companies intend to put their primary focus; IT is not how  [...]]]></description>
			<content:encoded><![CDATA[<p>Information Technology (IT) is a vital, operational element of most companies. Many companies would not be able to function without the applications and systems on which they rely to deliver their product. However, IT is not where these companies intend to put their primary focus; IT is not how they make their money. Given that thought, companies still spend enormous resources on building and maintaining their IT infrastructure. Often, they have difficulty in controlling their IT expenditures, and look for other ways to handle this vital operation.</p>
<p>By outsourcing their IT operation, companies are free to focus on their core functions, and control their IT expenditures. When outsourcing IT, the systems architecture and the delivery of applications is the responsibility of a service provider. The service provider can deliver IT functions at a significantly reduced cost.</p>
<p><!--As a provider of IT services, IT Vizion promotes its Software as a Service (SaaS) model for the delivery of applications designed to meet the needs of individual companies. With input from clients, IT Vizion is able to customize web-based applications to make this happen. The client company needs only to provide users with an internet capable workstation or mobile device to access the application. All data processing is handled by IT Vizion's systems; therefore the client company does not need to purchase the server hardware, software, and personnel to support it.--></p>
<p>To find out how IT Vizion can help you meet your application needs, please call 1.<strong>877.488.4946</strong> or <a href="/contact">contact us online</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://itvizion.com/provide-function-with-convenience-reduce-cost/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

