<?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>Scribbles &#187; Information Technology</title>
	<atom:link href="http://consult4content.com/blogs/http:/consult4content.com/blogs/category/information-technology/feed" rel="self" type="application/rss+xml" />
	<link>http://consult4content.com/blogs</link>
	<description>Creating Content that Communicates</description>
	<lastBuildDate>Sat, 01 Jan 2011 04:40:43 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.8.6</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Oracle vs SQL Server Part II</title>
		<link>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/oracle-vs-sql-server-part-ii</link>
		<comments>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/oracle-vs-sql-server-part-ii#comments</comments>
		<pubDate>Fri, 20 Aug 2010 07:11:41 +0000</pubDate>
		<dc:creator>Samantha</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[software]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[RDBMS]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[SQL query]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://consult4content.com/blogs/?p=692</guid>
		<description><![CDATA[Programming differences
SQL server is ANSI SQL 92 compliant and it will be possible to convert the database into other database formats. However, it requires a code rewrite.  SQL server also has no inbuilt JAVA database engine as in Oracle and Java classes cannot be loaded and executed in the database itself.  This limits database security [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><strong>Programming differences</strong></p>
<p style="text-align: justify;">SQL server is ANSI SQL 92 compliant and it will be possible to convert the database into other database formats. However, it requires a code rewrite.  SQL server also has no inbuilt JAVA database engine as in Oracle and Java classes cannot be loaded and executed in the database itself.  This limits database security and scalability to Java applications.</p>
<p style="text-align: justify;">In SQL server procedures are not compiled till the point of execution unlike in oracle where the packages and procedures are compiled before execution.  Additionally in Oracle 9i, it is possible to translate PL/SQL code into C code and compile the code to get performance gains for numeric intensive operations.</p>
<p style="text-align: justify;">The read/write of external files from a stored procedure cannot be performed in SQL Server, whereas this can be done in Oracle.</p>
<p style="text-align: justify;">SQL server uses cryptic commands for database administration. Oracle uses more intuitive commands.</p>
<p style="text-align: justify;">Further Oracle uses “create or replace” for procedures and views. This is not possible in SQL.  The result is that in SQL Server one must drop the procedure or view first and recreate it. This makes for two commands in place of one.</p>
<p style="text-align: justify;">When changes are made to a dependent object in oracle the procedure, function, package or view is marked as invalid. This does not happen in SQL and the user may get unexpected results from his program.</p>
<p style="text-align: justify;">Oracle has a recompiling option that is missing in SQL. The “alter procedure compile” command is applicable to procedures, functions, packages and views in Oracle. SQL programming demands that the whole procedure, function, package or view is resubmitted.</p>
<p style="text-align: justify;">Null values will not be indexed in Oracle whereas SQL will index all rows. This may prove to be an advantage in Oracle where large tables and columns are often null and you need to find non null values quickly. It can however, be a disadvantage if you need to find null values.  SQL Server on the other hand allows you to ignore nulls if you wish to and index them otherwise. There are no nasty table scans that can surprise you.</p>
<p style="text-align: justify;">Finally Triggers in Oracle do not provide for transactional control.  SQL server allows commits and rollbacks. This can be potentially dangerous in transactions that fire the trigger. Moreover, SQL server triggers can start transactions of their own, unlike in Oracle.</p>
<p style="text-align: justify;"><strong>Performance testing<br />
</strong>The statistics is fine grained in Oracle and the user has greater control. Yet obtaining the statistical reports is a challenge.</p>
<p style="text-align: justify;">The SQL query optimizer is more reliable. Query hints are never used. This makes performance testing easier in SQL.</p>
<p style="text-align: justify;">However, both data bases have performance glitches and the programmer will have to fix them.</p>
<p style="text-align: justify;"><strong>Concurrency model</strong></p>
<p style="text-align: justify;">The concurrency model between SQL and Oracle are very different. Oracle operates against Point-In-Time snapshots of data, but acquires them on demand. Therefore readers are never blocked.</p>
<p style="text-align: justify;">SQL on the other hand provides for more choices of isolation/concurrency and for more aggressive settings that will block readers and more aggressive readers can block writers.</p>
<p style="text-align: justify;"><strong>Standby database differences<br />
</strong>SQL Server and Oracle both allow standby databases. However, there are a number of differences in the way these databases are created and handled.  A standby database is usually set up on a second server. Logs are applied to this database for any changes so that the standby can be activated if the primary database fails.</p>
<p style="text-align: justify;">In SQL server the “failover server” gets activated after the “master” and the “msdb” databases are restored from the backup or copied from the primary server and all logs are applied.  This is because the new users/roles added to the primary are not carried over to the standby and backups have to be done of the master and the msdb on a regular basis. Oracle standby database gets automatically activated after the logs are applied and all user and role information is available both in the primary and in the standby.</p>
<p style="text-align: justify;">SQL server’s log shipping mechanism happens at OS level, while Oracles mechanism happens at Net8 level and logs are automatically applied to standbys without any scripts or OS batch files. However Oracle standby does not automatically create data files in the standby even when it is created in the primary database. Oracle 9i has rectified this problem. All versions of SQL server perform this operation automatically.</p>
<p style="text-align: justify;">Direct loads are also not possible in Oracle if the unrecoverable facility is being used to bypass redo logging.  The data files from the primary database will then have to be manually copied to the standby. This has not been sorted out even in 9i.  This is not a problem in SQL Server versions.</p>
<p style="text-align: justify;"><strong>Positioning</strong></p>
<p style="text-align: justify;">SQL server is an application that is positioned between MS-Access and Oracle. The functionality, performance and scalability of the application are a testimonial to this assertion.  SQL Server creates work groups and associates members to a work group and access to a specific data set is defined.  However, Oracle is more advanced and makes for larger applications in OLTP and Data warehousing. The clustering features of Oracle are ideal for Application Service Providers on the Internet, who want small clusters of servers that can be added to over a period of time. Oracle therefore makes a more convincing argument for the enterprise.</p>
<p style="text-align: justify;"><strong>Cluster Technology</strong></p>
<p style="text-align: justify;">SQL server cluster technology does not permit the sharing of a database by two nodes in a cluster. The application must manually spit up and redistribute between the hosts who work on different data sets. It follows that it is not possible to scale up by adding nodes to a cluster of SQL Servers. Moreover, SQL Server configurations demand that only the power of one node is used while the others are failover clusters that are activated when the active node fails.</p>
<p style="text-align: justify;">Oracle on the other had offers a Parallel server technology and it is possible for two or more instances of a database to remain active on different nodes in an active-active configuration. Lock management is used by the Oracle Parallel server. Oracle 9i has been renamed as Oracle Real Application Cluster and the Cache Fusion is a diskless contention that allows read-read, read- write, write-read, and write-write contention between the instances and any application can be placed in the cluster without changes and upward scaling is wholly possible.</p>
<p style="text-align: justify;"><strong>Replication differences:</strong><br />
SQL uses a simple replication of publisher-subscriber for transactional replication. This technology is slow because even when one table is being replicated, the entire transaction log is checked by the log reader agent and the transactional changes are applied to the subscriber.  In Oracle snapshot logs store the changes to a single table and this is copied across the logs. Archive logs are not checked.</p>
<p style="text-align: justify;"><strong>Miscellaneous differences:</strong></p>
<p style="text-align: justify;"><strong> </strong></p>
<ul style="text-align: justify;">
<li>Oracle      has 14 independent security evaluation as against SQL Server’s one.</li>
<li>SQL      Server Enterprise manager is easy to use; Oracle Enterprise manager is      very complex.</li>
<li>Oracle has introduced XMLType datatype to provide native support to XML and there are XML generation and aggregation operators that increase throughput of XML processing. In SQL Server there is only a limited means of reading and writing to xml from the tables.</li>
<li>Oracle      information pool is free, whereas SQL Server information pool requires      subscription.</li>
</ul>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Finformation-technology%2Foracle-vs-sql-server-part-ii', 'Oracle+vs+SQL+Server+Part+II')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Finformation-technology%2Foracle-vs-sql-server-part-ii', title: '+Oracle+vs+SQL+Server+Part+II+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/oracle-vs-sql-server-part-ii/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oracle vs SQL Server: part I</title>
		<link>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/oracle-vs-sql-server-part-i</link>
		<comments>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/oracle-vs-sql-server-part-i#comments</comments>
		<pubDate>Thu, 19 Aug 2010 15:16:17 +0000</pubDate>
		<dc:creator>Samantha</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[compare oracle sql]]></category>
		<category><![CDATA[oracle]]></category>
		<category><![CDATA[RDBMS]]></category>
		<category><![CDATA[sql]]></category>
		<category><![CDATA[sql server]]></category>

		<guid isPermaLink="false">http://consult4content.com/blogs/?p=629</guid>
		<description><![CDATA[[This article series was first published in www.sswug.org in November-December 2009. I will publish the next part of this article next week.  Hope you enjoy reading this article as much as my other readers did!]
Both Oracle and SQL are relational database systems (RDBMS). The data is stored in form of tables and columns. Both SQL [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;"><em>[This article series was first published in www.sswug.org in November-December 2009. I will publish the next part of this article next week.  Hope you enjoy reading this article as much as my other readers did!]</em></p>
<p style="text-align: justify;">Both Oracle and SQL are relational database systems (RDBMS). The data is stored in form of tables and columns. Both SQL and Oracle include programming languages, facilities and utilities that support enterprise level applications like ERP and data warehousing. So, both these applications can be described as a set of processes that run on an operating system. The processes define how the data is stored and how it is accessed. ODBC is supported in both.</p>
<p style="text-align: justify;">Having said that, let us now examine the differences:</p>
<p style="text-align: justify;"><strong>Multiplatform vs Single platform </strong></p>
<p style="text-align: justify;">Oracle is multiplatform; SQL server works only on Windows. This limits the use of SQL in enterprise solutions. Oracle can be used with Windows, all flavors of UNIX and with vendor machines like IBM, Sun, Digital, HP, Sequent and so on.</p>
<p style="text-align: justify;">The advantage of using SQL server is that SQL requires only a specific operating system that supports multithreading and no special hardware. Oracle requires special hardware configurations. On the other hand Oracle supports unlimited number of user connections. SQL Server has a limitation to the number of user connections that are possible.</p>
<p style="text-align: justify;"><strong>The language of data access </strong></p>
<p style="text-align: justify;">The data access in Oracle and SQL is done using a Structured Query language or SQL. SQL Standard was created to provide a means for coders to access and manipulate databases. It is an ANSI or American National Standards Institute standard. SQL allows coders to execute queries against a database; retrieve, insert, update and delete data from a database; create new databases and tables; create stored procedures, views and set permissions on tables, procedures and views.</p>
<p style="text-align: justify;">While the SQL of Oracle and SQL Server implement the ANSI standard requirements, they are really very different versions of the SQL language.</p>
<p style="text-align: justify;">SQL for SQL server uses a number of supportive tools (eg.SQL Plus) to build its applications. Basically SQL for SQL Server is composed of two components&#8211;DML and DDL. While DML is a data manipulation language DDL is a data definition language. DML includes commands like SELECT, UPDATE, INSERT, MERGE and DELETE. DDL commands are CREATE TALE, ALTER VIEW, CREATE VIEW or REPLACE PROCEDURE.</p>
<p style="text-align: justify;">PL/SQL for Oracle is a procedural language that is an extension of SQL. SQL can be embedded in PL/SQL. It is used to create applications. It is a fourth generation programming language and has software engineering features such as data encapsulation, overloading, collection types, exceptions and information hiding. Rapid prototyping and development through tight integration of SQL with the Oracle database is a feature of this language.</p>
<p style="text-align: justify;">One advantage of SQL over Oracle that is often touted is that SQL is ANSI-SQL ’92 compliant. This makes it very easy to convert the SQL database into another ANSI compliant database (at least theoretically). Oracle is more proprietary and the conversion is not possible.</p>
<p style="text-align: justify;"><strong>Oracle uses multiprocessors; SQL uses multithreading. </strong></p>
<p style="text-align: justify;">Oracle uses multiprocessing to support more than one process simultaneously and this enables a number of programs run concurrently. Different users with different permissions may run different processes simultaneously. This is possible because the application is organized across multiple OS level processes. The processes are insulated from each other by the OS an error in one process will not impact the other process that are running concurrently.</p>
<p style="text-align: justify;">SQL uses multi-threading and creates processes that have multiple threads running simultaneously. Each thread is a stream of instructions in the process with instruction pointers, stack of register and stack memory specific to the thread. The address space is also process specific or common to all threads within a process. This makes the data heap easily accessible. The multithreading process is more light weight than Multi processing. There are fewer contexts per thread than per process. Space sharing by the threads also makes for less work. Therefore costs are also lower.</p>
<p style="text-align: justify;">However on the flip side, multithreading is more complex. The coder has to take care that the code is reentrant and thread safe. Often multi-version consistency is absent and “writers block readers and readers block writers” to make sure data integrity is maintained. This results in delays and waits in a heavy OLTP environment. SQL also will escalate row locks to page level locks if too many rows are locked on a page and this may even involve rows that are not being updated. So, long uncommitted transactions in SQL Server can halt all activity on the database and space allocated to committed transactions is not released till the recycling of the transaction log is complete.</p>
<p style="text-align: justify;">In Oracle, this does not happen. Oracle dynamically re-creates a read consistent image for a reader of any requested data whose changes have not yet been committed. Uncommitted transactions will only halt the transaction itself when it runs out of rollback space.</p>
<p style="text-align: justify;">In other words, the trade off is between speed and efficiency versus code complexity.</p>
<p style="text-align: justify;">A natural corollary is that SQL is highly rated for Cost and performance.Oracle is priced higher.</p>
<p style="text-align: justify;"><strong>Differences in Performance and Tuning </strong></p>
<p style="text-align: justify;">SQL server does not offer much control over sorting or memory allocation and Cache allocation unlike Oracle. The sort area size and cache area size can be set by the DBA in Oracle whereas the sort area size and cache area size is predefined in SQL Server.</p>
<p style="text-align: justify;">The DBA also does not have any facility to prevent fragmentation in SQL Server. All pages are set to 8K and all extents are set to 8 pages. Larger extents for contiguous space cannot be specified for large objects. In Oracle this is fully configurable.</p>
<p style="text-align: justify;">Range partitioning of large tables and indexes are not possible in SQL Server. In Oracle a large table can be seamlessly partitioned at the database level in range partitions. The performance and maintenance benefits derived from this are tremendous.</p>
<p style="text-align: justify;">Log miner facility is unknown in SQL Server. Oracle 8i and 9i have a Log Miner inbuilt. This facility enables inspection of archived redo logs. However, in SQL server this facility can be integrated with third party tools.</p>
<p style="text-align: justify;">SQL Server requires fully qualifying the name of an object to achieve 7-10% performance gains. Oracle too has some gains if the names are fully qualified, but the gain would be as small as 0.01% as Oracle uses its internal dictionary to resolve names.</p>
<p style="text-align: justify;"><strong>Missing object types in SQL Server </strong></p>
<p style="text-align: justify;">SQL Server has</p>
<p style="text-align: justify;">a. No public or private synonyms; no independent sequences</p>
<p style="text-align: justify;">b. No collection of procedures and functions.</p>
<p style="text-align: justify;">c. There is no such thing as independent sequence objects.</p>
<p style="text-align: justify;">d. There are no packages; i.e., collections of procedures and functions.</p>
<p style="text-align: justify;">e. No &#8220;before&#8221; event triggers (only &#8220;after&#8221; event triggers) and no row triggers (only statement)</p>
<p style="text-align: justify;"><strong>To summarize: </strong></p>
<p style="text-align: justify;">Oracle is multiplatform and SQL is single platform application</p>
<p style="text-align: justify;">Oracle uses SQL Plus and SQL uses SQL</p>
<p style="text-align: justify;">Oracle is a multiprocessor application and SQL is a multithreading application</p>
<p style="text-align: justify;">Performances tuning in Oracle and SQL server are different</p>
<p style="text-align: justify;">There are several object types that are missing in SQL Server.</p>
<p style="text-align: justify;">Stay tuned in for the next part of the review!</p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Finformation-technology%2Foracle-vs-sql-server-part-i', 'Oracle+vs+SQL+Server%3A+part+I')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Finformation-technology%2Foracle-vs-sql-server-part-i', title: '+Oracle+vs+SQL+Server%3A+part+I+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/oracle-vs-sql-server-part-i/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Freelancer Alert: Export Code(IEC)</title>
		<link>http://consult4content.com/blogs/http:/consult4content.com/blogs/money-finance/freelancer-alert-export-codeiec</link>
		<comments>http://consult4content.com/blogs/http:/consult4content.com/blogs/money-finance/freelancer-alert-export-codeiec#comments</comments>
		<pubDate>Sat, 27 Feb 2010 18:00:53 +0000</pubDate>
		<dc:creator>Samantha</dc:creator>
				<category><![CDATA[Business]]></category>
		<category><![CDATA[Freelance content]]></category>
		<category><![CDATA[Freelancing]]></category>
		<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Money & Finance]]></category>
		<category><![CDATA[News and society]]></category>
		<category><![CDATA[DGFT]]></category>
		<category><![CDATA[export code]]></category>
		<category><![CDATA[Foreign Trade development and regulation Act]]></category>
		<category><![CDATA[IEC number]]></category>
		<category><![CDATA[License]]></category>
		<category><![CDATA[Paypal block]]></category>
		<category><![CDATA[Paypal export code]]></category>
		<category><![CDATA[Paypal issues]]></category>

		<guid isPermaLink="false">http://consult4content.com/blogs/?p=611</guid>
		<description><![CDATA[The email from Paypal has elicited a mixed response. Many are happy to see the light at the end of the tunnel but are puzzled by the rider that everyone would have to enter an Export code before they are permitted to withdraw the funds to their bank account.  I see many blog posts which [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">The email from Paypal has elicited a mixed response. Many are happy to see the light at the end of the tunnel but are puzzled by the rider that everyone would have to enter an Export code before they are permitted to withdraw the funds to their bank account.  I see many blog posts which ask &#8220;What the hell is Export code?&#8221; So this information may be useful for you.</p>
<p style="text-align: justify;">The Foreign Trade(Development and Regulation) Act 1992 stipulates that every exporter or importer of goods and services must apply for and obtain an Importer-Exporter Number(IEC Number).  The application for obtaining this number needs to be made under section seven of this act to the Director General. Under this act an importer is anyone who brings in goods or services into the country and an exporter is one who sends out goods and services via land, sea or air. However, the term &#8220;goods&#8221; is not defined in the act itself and the meaning is derived from the dictionary meaning of the word or from the Import-Export regulation act of 1947 which preceded the current act. As per this act &#8220;goods&#8221; is defined as any &#8220;article, animal, substance or property whatsoever&#8221;.</p>
<p style="text-align: justify;">There has been a lot of controversy whether sending of digital material over the Internet would qualify as &#8220;goods&#8221; or &#8220;services&#8221; and whether the process of transmitting the information over the Internet falls within the ambit of sending out of India goods or services &#8220;by land, sea or air&#8221;.  Since the issue was unclear, freelancers were not asked to apply and obtain the IEC number under section 7.</p>
<p style="text-align: justify;">However, there was a move to include services into the ambit of the act from time to time. Objections from the Finance Ministry kept the amendment at bay for some time.  The Standing Committee on Commerce made suggestions on Foreign Trade (Development and Regulation) Amendment Bill, 2009 which included a suggestion to bring &#8220;Techonology&#8221; and &#8220;services&#8221; including &#8220;financial services&#8221; under the ambit of the act.  The bill was  submitted on the 25th of November 2009 to effect the following amendments.</p>
<p style="text-align: justify;">2(a) (ii) Supplying Service or Technology from the territory of India to another country; from India to a service consumer in another country; by a service supplier in India through a commercial presence in another country; through a service supplier in India, through Indian naturals in the territory of another country.</p>
<p style="text-align: justify;">Elaborate definitions of service and technology have also been included in the act. You can get more information at<a href="http://164.100.47.5/newcommittee/press_release/bill/Committee%20on%20Commerce/Foreign%20Trade%20%28Development%20and%20Regulation%29%20Bill,%2020090001.pdf"> http://164.100.47.5/newcommittee/press_release/bill/Committee%20on%20Commerce/Foreign%20Trade%20%28Development%20and%20Regulation%29%20Bill,%2020090001.pdf </a>.  The net result of this amendment would be that all freelancers who supply software or other kinds of services to consumers abroad must apply for and obtain a IEC number.</p>
<p style="text-align: justify;">I am unable to ascertain whether the bill has been passed or is still pending. If it has been passed, freelancers should get ready to apply for the IEC number! Stay tuned in for more information!</p>
<p style="text-align: justify;">
<p style="text-align: justify;">
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Fmoney-finance%2Ffreelancer-alert-export-codeiec', 'Freelancer+Alert%3A+Export+Code%28IEC%29')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Fmoney-finance%2Ffreelancer-alert-export-codeiec', title: '+Freelancer+Alert%3A+Export+Code%28IEC%29+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://consult4content.com/blogs/http:/consult4content.com/blogs/money-finance/freelancer-alert-export-codeiec/feed</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>Boosting Server Virtualization Support: DataCore SAN Software Updates!</title>
		<link>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/boosting-server-virtualization-support-datacore-san-software-updates</link>
		<comments>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/boosting-server-virtualization-support-datacore-san-software-updates#comments</comments>
		<pubDate>Wed, 10 Feb 2010 09:58:12 +0000</pubDate>
		<dc:creator>Samantha</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Storage devcies]]></category>
		<category><![CDATA[Datacore]]></category>
		<category><![CDATA[DataCore SAN]]></category>
		<category><![CDATA[server centric approach]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[virtual]]></category>
		<category><![CDATA[virtual machines]]></category>
		<category><![CDATA[virtual storage]]></category>
		<category><![CDATA[virtualize]]></category>
		<category><![CDATA[vmware]]></category>

		<guid isPermaLink="false">http://consult4content.com/blogs/?p=546</guid>
		<description><![CDATA[Latest versions of SANmelody 3.0 and SANsymphony 7.0 storage virtualization software were under preview at VMWorld Europe 2009.   The products were  shipped in March 2009 with 64 bit software architectures and a host of new features for virtual servers.
SANSymphony is for enterprises that aim to virtualize their storage area networks, while SANmelody is for small [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Latest versions of SANmelody 3.0 and SANsymphony 7.0 storage virtualization software were under preview at VMWorld Europe 2009.   The products were  shipped in March 2009 with 64 bit software architectures and a host of new features for virtual servers.</p>
<p style="text-align: justify;">SANSymphony is for enterprises that aim to virtualize their storage area networks, while SANmelody is for small Fiber Channel and iSCSI SANs of up to 32 TB.  The virtual disk pooling, synchronized mirroring for high availability, load balancing, thin provisioning and other advanced features are exciting and will be welcomed by enterprises using these software.  The 64 bit controller software supports large cache on the physical server up to a theoretical limit of 1 TB as against the earlier versions which supported only 20 GB cache.</p>
<p style="text-align: justify;">Jack Fegreus, CEO Southborough, Mass-based openBench Labs points out that a terabyte of cache is “at the far edge of reality for most normal sites today” but given Moore’s Law “1TB of cache may well be average”.  Today many organizations use as much as 256 GB of cache on average. This increased cache will imply that there will be a denser consolidation of servers into virtual machines and performance of VM backups may improve by minimizing I/O to disk.</p>
<p style="text-align: justify;">The Transporter Option that comes with SANmelody and SANsymphony can also perform conversions between physical and virtual servers. This feature is significant as a server can be converted from a physical Windows box to a Microsoft Corp.Hyper V Image and then to a VMware ESX image.  It can then be converted back to a logical unit Number (LUN) mapped to a physical server. This feature could be an advantage to people who are running multiple virtual servers with different operating systems.</p>
<p style="text-align: justify;">Themis Tokkaris, Systems Engineer, Truly Nolen, Tuscon,  Ariz (a pest control company) appreciates that “it is also an open idea” and further says: “&#8221;If I&#8217;m not happy with ESX in the future, I&#8217;m not stuck with it.&#8221;</p>
<p style="text-align: justify;">DataCore SAN offers its users the option of using a new free plug in for VMWare Inc’s Virtual Infrastructure Client.  James Price, Vice President of Product and Channel Marketing, DataCore SAN, claims that it will offer “cleaner visibility and easier to understand mappings and paths”.  He further points out that the upgrades will provide a way to reclaim free capacity on volumes using thin provisioning.</p>
<p style="text-align: justify;">DataCore SAN is not alone in this storage virtualization space. Many of the features offered by DataCore such as 64 bit support, thin provisioning and so on have been included in the packages of other vendors.  Symantec Corp., Double-Take Software Inc and others offer 64 bit support for the data protection space.  Compellent Technologies Inc. too offered free space recovery for thin provisioning about a year ago.  DataCore SAN’s offer, however, combines these features into a server centric approach and appears to have set the trend for the future of networked storage solutions.</p>
<p style="text-align: justify;">However, Fegreus says DataCore&#8217;s combining these features into a server-centric approach looks like the wave of the future for networked storage as integration increases between SANs and servers.</p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Finformation-technology%2Fboosting-server-virtualization-support-datacore-san-software-updates', 'Boosting+Server+Virtualization+Support%3A+DataCore+SAN+Software+Updates%21')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Finformation-technology%2Fboosting-server-virtualization-support-datacore-san-software-updates', title: '+Boosting+Server+Virtualization+Support%3A+DataCore+SAN+Software+Updates%21+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://consult4content.com/blogs/http:/consult4content.com/blogs/information-technology/boosting-server-virtualization-support-datacore-san-software-updates/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Optical Storage Discs: Will it solve backup problems?</title>
		<link>http://consult4content.com/blogs/http:/consult4content.com/blogs/contenttype/website-content/optical-storage-discs-will-it-solve-backup-problems</link>
		<comments>http://consult4content.com/blogs/http:/consult4content.com/blogs/contenttype/website-content/optical-storage-discs-will-it-solve-backup-problems#comments</comments>
		<pubDate>Fri, 05 Feb 2010 02:11:06 +0000</pubDate>
		<dc:creator>Samantha</dc:creator>
				<category><![CDATA[Information Technology]]></category>
		<category><![CDATA[Storage devcies]]></category>
		<category><![CDATA[website content]]></category>
		<category><![CDATA[disc]]></category>
		<category><![CDATA[high-density storage]]></category>
		<category><![CDATA[optical discs]]></category>
		<category><![CDATA[Pioneer]]></category>
		<category><![CDATA[storage]]></category>
		<category><![CDATA[storage capacity]]></category>
		<category><![CDATA[storage devices]]></category>
		<category><![CDATA[Ultra density optical disc]]></category>

		<guid isPermaLink="false">http://consult4content.com/blogs/?p=510</guid>
		<description><![CDATA[Storage of mission critical data is one of the biggest concerns of corporations.  The cost of storage, the method of storage and the retrieval of stored data are engaging the attention of IT Administrators in a way that it never did before. In the early days of the Information revolution, data was stored in tapes [...]]]></description>
			<content:encoded><![CDATA[<p style="text-align: justify;">Storage of mission critical data is one of the biggest concerns of corporations.  The cost of storage, the method of storage and the retrieval of stored data are engaging the attention of IT Administrators in a way that it never did before. In the early days of the Information revolution, data was stored in tapes and cassettes and secured offline with a time horizon of 30 years.  However, this storage was voluminous and often chaotic and data retrieval was a pain.  Newer storage devices now provide alternate storage methodologies that are attractive.</p>
<p style="text-align: justify;">Pioneer has announced a 16 layer read only optical disc with a mega storage capacity of 400 GB.  What is so interesting about this device? This storage device has been hailed as one of the most important breakthroughs in storage technology. Earlier versions of optical discs were riddled with problems. They were unable to relay signals clearly from the different layers and cross talk rendered the device useless.  Pioneer has solved the problem of cross talk from adjacent layers by using a disc production technology that was first introduced into the DVD arena. The prediction is that future optical discs will provide much denser storage per layer and will continue to evolve as the science of optics is studied.</p>
<p style="text-align: justify;">Ultra Density Optical (UDO) discs are third generation optical discs designed for very high-density storage of video data. Currently available Ultra Density Optical discs have an estimated shelf life of 50 years. They have been introduced into the market and found to be reliable and durable for short-term use. Currently the UDO is used by banks, health care facilities, and financial corporations.</p>
<p style="text-align: justify;">Pioneer said in a recent statement released from Japan that the growing storage needs of many corporations is expected to drive the demand for higher capacity discs. The company also mentions that buying just one high capacity optical disc is equal to buying numerous other commercially available discs. This way, resources can be conserved and put to better use.</p>
<p style="text-align: justify;">The experts meanwhile are not impressed. David Hill, an analyst at Mesabi Group argues that such technology may be more “suitable for storing video and archiving at the consumer level”.</p>
<p style="text-align: justify;">Likewise, Greg Schulz an analyst with Storage IO mentions that for years there has been talk about holographic storage but, “if you are holding your breath for that, you had better get a scuba tank”. So far the optical disc storages have not proven to be worthy in a commercial market and there are many kinks that have to be sorted out.</p>
<p style="text-align: justify;">However, most experts do agree that the Blu ray at both ends of the market and in specialized verticals such as video is improving data storage and preservation. Despite the great advances in hardware capabilities, the dinosaurs of data storage, the disk and tape, that were long ago acknowledged to be dead, continue to be pertinent because they are constantly being improved, cost a lot less and are durable.</p>
<p style="text-align: justify;">The Future?  Most experts predict that future data storage will be achieved by a hybrid of RAM based or sometime of flash based solid state memory, perhaps even a touch of holographic technology.</p>
<p style="text-align: justify;">______________________________________________________________________________________________</p>
<p style="text-align: justify;">Top Storage Blogs you may like to read!</p>
<p align="left"><a href="http://blogs.netapp.com/dave/">http://blogs.netapp.com/dave/</a></p>
<p align="left"><a href="http://blogs.hds.com/hu/">http://blogs.hds.com/hu/</a></p>
<p align="left"><a href="http://marksblog.emc.com/">http://marksblog.emc.com/</a></p>
<p align="left"><a href="http://esgblogs.typepad.com/steves_it_rants/">http://esgblogs.typepad.com/steves_it_rants/</a></p>
<p align="left"><a href="http://www-03.ibm.com/developerworks/blogs/page/InsideSystemStorage">http://www-03.ibm.com/developerworks/blogs/page/InsideSystemStorage</a></p>
<p align="left"><a href="http://storagethoughts.blogspot.com/2006/10/seeing-whats-next-in-storage-industry.html">http://storagethoughts.blogspot.com/2006/10/seeing-whats-next-in-storage-industry.html</a></p>
<p align="left"><a href="http://storagemojo.com/">http://storagemojo.com/</a></p>
<p align="left"><a href="http://drunkendata.com/">http://drunkendata.com/</a></p>
<p align="left"><a href="http://h20325.www2.hp.com/blogs/campbell">http://h20325.www2.hp.com/blogs/campbell</a></p>
<p align="left"><a href="http://www.microsoft.com/technet/community/en-us/storage/default.mspx">http://www.microsoft.com/technet/community/en-us/storage/default.mspx</a></p>
<div id="st0000000001" class="st-taf"><script src="http://taf.socialtwist.com:80/taf/js/shoppr.core.js?id=0000000001"></script><img style="border:0;margin:0;padding:0;" src="http://tellafriend.socialtwist.com:80/wizard/images/tafbutton_blue16.png" onmouseout="hideHoverMap(this)" onmouseover="showHoverMap(this, '0000000001', 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Fcontenttype%2Fwebsite-content%2Foptical-storage-discs-will-it-solve-backup-problems', 'Optical+Storage+Discs%3A+Will+it+solve+backup+problems%3F')" onclick="cw(this, {id:'0000000001',link: 'http%3A%2F%2Fconsult4content.com%2Fblogs%2Fhttp%3A%2Fconsult4content.com%2Fblogs%2Fcontenttype%2Fwebsite-content%2Foptical-storage-discs-will-it-solve-backup-problems', title: '+Optical+Storage+Discs%3A+Will+it+solve+backup+problems%3F+' })"/></div>]]></content:encoded>
			<wfw:commentRss>http://consult4content.com/blogs/http:/consult4content.com/blogs/contenttype/website-content/optical-storage-discs-will-it-solve-backup-problems/feed</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>

