<?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>DBAnotes.com</title>
	<atom:link href="http://www.dbanotes.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.dbanotes.com</link>
	<description>Data expands Knowledge. Database technology is the tool we use.</description>
	<lastBuildDate>Wed, 03 Mar 2010 02:48:29 +0000</lastBuildDate>
	<generator>http://wordpress.org/?v=2.9.2</generator>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>A General Philosophy for Data Modeling</title>
		<link>http://www.dbanotes.com/data-modeling/a-general-philosphy-for-data-modeling/</link>
		<comments>http://www.dbanotes.com/data-modeling/a-general-philosphy-for-data-modeling/#comments</comments>
		<pubDate>Sat, 27 Feb 2010 05:05:44 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[Data Modeling]]></category>

		<guid isPermaLink="false">http://www.dbanotes.com/?p=273</guid>
		<description><![CDATA[The design of any application depends on the foundation of its data model. We must all accept that fact that the decisions made during the data modeling phase will determine the success of the application.  
Before we address any specific data modeling topics or problems, we must talk about the philosophy that will provide the basis for any [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>The design of any application depends on the foundation of its data model. We must all accept that fact that the decisions made during the data modeling phase will determine the success of the application.  </p>
<p>Before we address any specific data modeling topics or problems, we must talk about the philosophy that will provide the basis for any solutions presented here. </p>
<p>First, it is important to have a good understanding of the rules of performance tuning:</p>
<ol>
<li>Tune the design (fix the data model, if it&#8217;s not too late)</li>
<li>Tune the application</li>
<li>Tune Memory</li>
<li>Tune IO</li>
<li>Tune contention</li>
<li>Tune operating system</li>
</ol>
<p>What are the data model guidelines that I follow to avoid breaking the performance tuning rules?</p>
<ol>
<li>There are no absolutes. All decisions you will make are situational and need to consider the unique application requirements. If you blindly follow a philosophy, including the one presented here, I am sorry to inform you that nothing but luck will be available for you when designing a data model that is both scalable and high performance.</li>
<li>Design for the database platform.  Use the features of the RDBMS you selected, the dream of a data model that works great on all database platforms will never be realized in your life time.</li>
<li>General purpose ORMs do not create SQL optimized for your application. You will never be lucky enough to be working on an application where the auto generated SQL meets all requirements.</li>
<li>If the applications fails, it will be either the data model&#8217;s or the application design&#8217;s fault not the database platform selected. </li>
<li>While designing the data model visualize all queries that will be run, how new data will be inserted, and the data manipulations that will be done in various use case scenarios.</li>
<li>You must know how the query optimizer works for the RDBMS platform you are designing for. </li>
<li>All applications will SELECT, INSERT, UPDATE, DELETE data. Understand what the application needs to do, who is doing it, and how it will be done.</li>
<li>UPDATE and DELETE statements will always need to search for data, INSERTS not so much.</li>
<li>Users are more patient when they give data, but not as much when they are selecting data. Generally speaking, if a design decision must be made between INSERT or SELECT performance, error on benefiting the SELECT.</li>
<li>Advise the development team on how best to use &#8220;your&#8221; data model, or better yet help them build the data access layer (DAL).</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/data-modeling/a-general-philosphy-for-data-modeling/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How do I get a Record Set from a Stored Procedure in Oracle</title>
		<link>http://www.dbanotes.com/database-development/how-do-i-get-a-record-set-from-a-stored-procedure-in-oracle/</link>
		<comments>http://www.dbanotes.com/database-development/how-do-i-get-a-record-set-from-a-stored-procedure-in-oracle/#comments</comments>
		<pubDate>Sat, 30 May 2009 19:48:20 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[Database Development]]></category>
		<category><![CDATA[Oracle Database]]></category>

		<guid isPermaLink="false">http://www.dbanotes.com/?p=259</guid>
		<description><![CDATA[Developers that are familiar with using MS SQL Server eventually get the opportunity to work on a project that is Oracle based. This opportunity sometimes becomes an extremely frustrating time due to the philosophical differences in the approach to database development. I believe it is hard for most developers to transition between the two database platforms, not [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Developers that are familiar with using MS SQL Server eventually get the opportunity to work on a project that is Oracle based. This opportunity sometimes becomes an extremely frustrating time due to the philosophical differences in the approach to database development. I believe it is hard for most developers to transition between the two database platforms, not because one is necessarily better or worse, just because it is too hard for many people to change the way they solve problems once proven methodologies have been established.</p>
<p>These are a few questions that are just about guaranteed to come up during the initial stages of the project:</p>
<p><strong>How do I get a record set from Oracle using a stored procedure?</strong></p>
<blockquote><p>Using a <a href="http://download.oracle.com/docs/cd/B28359_01/appdev.111/b28370.pdf">REF_CURSOR</a> you can return a record set/cursor from a stored procedure.</p></blockquote>
<p><strong>Why don&#8217;t stored procedure work the same as in SQL Server?</strong></p>
<blockquote><p>In most cases you just use straight SQL and do not need a stored procedure. In Oracle, using cursors and adhoc SQL is the way. In SQL Server, using cursors and adhoc SQL is to be avoided (generally speaking, there are no absolutes).  Why you need to use a stored procedure for a SQL statement in Oracle must be fully explored. I am not saying you don&#8217;t need one, but the reason is not because that is the way you do it in SQL Server.</p></blockquote>
<p>Please do not even start coding until you have read the following documents:</p>
<ul>
<li><a href="http://www.oracle.com/pls/db111/to_pdf?pathname=server.111/b28318.pdf">Oracle Concepts</a></li>
<li><a href="http://www.oracle.com/pls/db111/to_pdf?pathname=appdev.111/b28843.pdf">2 Day Developer’s Guide</a></li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/database-development/how-do-i-get-a-record-set-from-a-stored-procedure-in-oracle/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Oraclenotes.com is now DBAnotes.com</title>
		<link>http://www.dbanotes.com/announcements-news/oraclenotescom-is-now-dbanotescom/</link>
		<comments>http://www.dbanotes.com/announcements-news/oraclenotescom-is-now-dbanotescom/#comments</comments>
		<pubDate>Mon, 04 May 2009 02:49:52 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[Announcements & News]]></category>

		<guid isPermaLink="false">http://www.dbanotes.com/?p=250</guid>
		<description><![CDATA[If you are looking for Oraclenotes.com, Do Not Panic, you are in the right place. Today we have finally made the switch from Oraclenotes.com to DBAnotes.com. Oraclenotes.com was a stand-alone website since 1999, and we appreciate all of the support we received over the past 10 years.
It was a difficult decision to consolodate the two sites, but [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>If you are looking for Oraclenotes.com, Do Not Panic, you are in the right place. Today we have finally made the switch from Oraclenotes.com to DBAnotes.com. Oraclenotes.com was a stand-alone website since 1999, and we appreciate all of the support we received over the past 10 years.</p>
<p>It was a difficult decision to consolodate the two sites, but we wanted to move forward with one domain dedicated to all things databases. This vision resulted in DBAnotes.com, and we hope you enjoy the new site.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/announcements-news/oraclenotescom-is-now-dbanotescom/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>What is a Schema in SQL Server 2005?</title>
		<link>http://www.dbanotes.com/sqlserver-database/what-is-a-schema-in-sql-server-2005/</link>
		<comments>http://www.dbanotes.com/sqlserver-database/what-is-a-schema-in-sql-server-2005/#comments</comments>
		<pubDate>Sat, 21 Feb 2009 17:39:34 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://dbanotes.com/?p=72</guid>
		<description><![CDATA[What is a Schema?
In Microsoft SQL Server 2005, a schema is a collection of objects adhering to the ANSI SQL-92 standard.
The ANSI SQL-92 standard defines a schema as a collection of database objects that are owned by a single principle and form a single namespace.
All objects within a schema must be uniquely named and a [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>What is a Schema?</p>
<p>In Microsoft SQL Server 2005, a schema is a collection of objects adhering to the <a title="ANSI SQL 92 Standard" href="http://www.contrib.andrew.cmu.edu/~shadow/sql/sql1992.txt" target="_blank">ANSI SQL-92 standard</a>.</p>
<p>The ANSI SQL-92 standard defines a schema as a collection of database objects that are owned by a single principle and form a single namespace.</p>
<p>All objects within a schema must be uniquely named and a schema must be uniquely named in the database catalog. SQL Server 2005 breaks the link between users and schemas, users do not own objects. <strong>Schemas own objects and principles own schemas.</strong></p>
<p>A schema can be owned by either a primary or secondary principle, with the term &#8220;principle&#8221; meaning any SQL Server entity that can access securable objects.</p>
<p>Principle types that can own schemas:</p>
<ul>
<li>Primary
<ul>
<li>SQL Server Login</li>
<li>Database User</li>
<li>Windows Login</li>
</ul>
</li>
<li>Secondary
<ul>
<li>SQL Server Roles</li>
<li>Windows Groups</li>
<li>Default Schemas</li>
</ul>
</li>
</ul>
<p>Users can now have a default schema assigned using the DEFAULT_SCHEMA option of CREATE USER and ALTER USER commands. If no default schema is supplied for a user then DBO will be used as the default schema.</p>
<p>&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;</p>
<p>SQL Server 2005 Schema Objects</p>
<ul>
<li>Tables</li>
<li>Indexes</li>
<li>Views</li>
<li>Synonyms</li>
<li>Stored Procedures</li>
<li>Triggers</li>
<li>Functions</li>
<li>Assemblies</li>
<li>Types</li>
<li>Defaults</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/sqlserver-database/what-is-a-schema-in-sql-server-2005/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>SQL Server 2008 System Views Map</title>
		<link>http://www.dbanotes.com/sqlserver-database/sql-server-2008-system-views-map/</link>
		<comments>http://www.dbanotes.com/sqlserver-database/sql-server-2008-system-views-map/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 02:43:21 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.dbanotes.com/?p=235</guid>
		<description><![CDATA[Download the SQL 2008 System View Map
The Microsoft SQL Server 2008 System Views Map shows the key system views included in SQL Server 2008, and the relationships between them.
]]></description>
			<content:encoded><![CDATA[<p></p><p><a title="Download SQL 2008 System Map" href="http://www.microsoft.com/downloads/details.aspx?FamilyID=531c53e7-8a2a-4375-8f2f-5d799aa67b5c&amp;displaylang=en">Download the SQL 2008 System View Map</a></p>
<p><span>The Microsoft SQL Server 2008 System Views Map shows the key system views included in SQL Server 2008, and the relationships between them.</span></p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/sqlserver-database/sql-server-2008-system-views-map/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Best New Features of SQL 2008</title>
		<link>http://www.dbanotes.com/sqlserver-database/best-new-features-of-sql-2008/</link>
		<comments>http://www.dbanotes.com/sqlserver-database/best-new-features-of-sql-2008/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 01:44:28 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://www.dbanotes.com/?p=231</guid>
		<description><![CDATA[I am getting ready to upgrade an existing SQL 2005 application and have found the following SQL 2008 features worth more exploration:

INSERT (Transact-SQL Row Constructors) &#8211; Allows the ability to add one or more new rows to a table or a view. Seems novel but not sure how useful in practice.
MERGE Statement. This new Transact-SQL statement performs [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>I am getting ready to upgrade an existing SQL 2005 application and have found the following SQL 2008 features worth more exploration:</p>
<ol>
<li><strong>INSERT</strong> (Transact-SQL Row Constructors) &#8211; Allows the ability to add one or more new rows to a table or a view. Seems novel but not sure how useful in practice.</li>
<li><strong>MERGE</strong> Statement. This new Transact-SQL statement performs INSERT, UPDATE, or DELETE operations on a target table based on the results of a join with a source table. Oracle has had this statement for years. I am glad Microsoft has finally added it to TSQL.</li>
<li><strong>Full-Text Search</strong>: Full-text search is now a fully integrated feature of a database. Wow that took forever. I still remember the 8 hour Microsoft support call back in 2002, that included my rant session to support about the need for 1. Logging, 2. Database integration.</li>
<li><strong>SP_DEPENDS</strong>: Identifies down to the columns of each table your stored procedure uses.</li>
</ol>
<p>Things I am still waiting for:</p>
<ol>
<li>Row Level Security</li>
<li>Something equivalent to the Oracle %ROWTYPE attribute in variable declarations as a datatype specifier.</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/sqlserver-database/best-new-features-of-sql-2008/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Beating the Exam Jitters</title>
		<link>http://www.dbanotes.com/career-cert/beating-the-exam-jitters/</link>
		<comments>http://www.dbanotes.com/career-cert/beating-the-exam-jitters/#comments</comments>
		<pubDate>Wed, 04 Feb 2009 01:12:22 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[Career & Certification]]></category>

		<guid isPermaLink="false">http://www.dbanotes.com.php5-1.dfw1-1.websitetestlink.com/?p=190</guid>
		<description><![CDATA[How to Prepare for Certification Exams

Most people find it essential to establish some special time for learning. Be sure to set it for when you learn best &#8230; in the morning, early evening, etc., and stick to your schedule.
Use an effective method of study. Your own plan, if effective, is good. If yours didn&#8217;t work, [...]]]></description>
			<content:encoded><![CDATA[<p></p><h3><span style="color: #003366;">How to Prepare for Certification Exams</span></h3>
<ol>
<li>Most people find it essential to establish some special time for learning. Be sure to set it for when you learn best &#8230; in the morning, early evening, etc., and stick to your schedule.</li>
<li>Use an effective method of study. Your own plan, if effective, is good. If yours didn&#8217;t work, you might try SQ3R method which involves 5 steps: survey the test objectives, generate questions before reading a section of the text, read a section, recite what you have read, and review the chapter.</li>
<li>When you are just beginning to organize your study habits, don&#8217;t be too ambitious. Don&#8217;t try to crowd all your time for study in the day and leave no time for other things.</li>
<li>Do not assume you can increase your capacity more by adding more hours of study. The idea is to use your time wisely. Ever notice the students who get the high grades are usually active in extra curricular activities? They can&#8217;t all be geniuses. They budget their time.</li>
<li>Make a chart of your activities for the week. Block in study time.</li>
<li>Space your learning periods during the week rather than concentrating them all at one time. You will be less fatigued and each time you will come with a new fresh approach.</li>
<li>Do not study similar technologies, back to back. This tends to increase interference and makes the retention of material more difficult.</li>
<li>Plan in advance for times&#8211;when more intensive study will be needed for exams.</li>
<li>Follow the schedule after it has begun and do not let it &#8220;slide&#8221;. You will probably need revisions, but you must stick to it to succeed. Do not let yourself be distracted. Let everyone know that this is your study time and you will be free at a later time.</li>
</ol>
<h3><span style="color: #003366;">Emotional and Physical Preparation</span></h3>
<ol>
<li>Your attitude toward the subject influences your effectiveness and/or ability to learn the subject. &#8220;If you think you can, you will&#8221;</li>
<li>Poor or bad attitudes towards exams are usually due to the fact that:<br />
A. The student is asked to perform a task which he/she has not practiced in real life. The questions are asked differently and he/she is afraid she/he will not be able to recognize the correct response.B. Much emphasis is placed upon the terms hard and difficult, when<br />
thinking of exams. Who ever heard of-an easy exam? This puts you in the attitude of thinking &#8220;I can&#8217;t do it&#8221; with the resultant panic.</li>
<li>Panic is the greatest enemy of the test taker. You might also add &#8220;worry&#8221; to this statement. It is natural to have some tension, but panic is destructive. What causes it?</li>
<li>There are four (4) real or supposed causes:
<ol>
<li>A. Real incompetence. This is rather a common cause. The student sees a great deal to learn and he is afraid he knows nothing and really doesn&#8217;t know what&#8217;s important. He/she lose all perspective.</li>
<li>Social sheep-following. Here the student follows the group. If the gang thinks it&#8217;s (panic) the thing to do, then the student follows suit. Seen usually in teenage groups.</li>
<li>Seeds of doubt. Here the student listens to panic builders who are<br />
always saying, &#8220;this test is horrible&#8221;. &#8220;No one ever passes that exam.&#8221;<br />
The more the student thinks about it the greater the panic.</li>
<li>Students have also pointed out that the following will produce panic;<br />
not knowing what the exam expects of the examine, trick questions,<br />
lack of knowledge about vocabulary.</li>
</ol>
</li>
<li>How can you help yourself if you&#8217;re a panicker? Try these:<br />
a. Believe what panic you have built up you can break down.<br />
b. Don&#8217;t expect miraculous results but work steadily.<br />
c. Be practical. You can&#8217;t just &#8216;will&#8217; to not panic.<br />
d. Use your planned study as insurance. It&#8217;s a means of strengthening your confidence.</li>
<li>Study wisely and do not allow poor study habits to rob you of rest, recreation or refreshments. You need all four in moderation.</li>
<li>Get some testing software and use them. Give yourself the allotted time and check answers.</li>
<li>The use of &#8220;pep pills&#8221;, or stimulants, is foolish. You pass the exam at the expense of physical health. The old saying that &#8220;once or twice can&#8217;t hurt you&#8221; is not true. It usually leads you to do it the 3rd or 4th time.</li>
</ol>
<blockquote><p>If you are rested, relaxed and ready, You will perform much better.</p></blockquote>
<h3><span style="color: #003366;">Taking Certification Tests</span></h3>
<ol>
<li>Come prepared with pen, pencil, and paper.</li>
<li>Arrive ahead of time. If you rush in, find your seat and begin, you are in no frame of mind to take the test. Now you must spend precious time catching your breath and settling down.</li>
<li>Know the general nature of the test: Adaptive, Multiple choice,etc.<br />
How much time do you have?<br />
How much does each question count?<br />
Can you leave out any questions?<br />
Do you understand the directions?<br />
Plan your time before you begin. Be strategic!</li>
<li>If, during the test, You find yourself panicking, take 10 slow, deep breaths. The preoccupation of taking them slowly will allow you a rest period.</li>
<li>Answer the easy questions first. This way you will give yourself confidence and can tackle the hard ones.</li>
<li>Don&#8217;t become upset by the apparent length or complexity of the test.<br />
One of the advantages of this type of test is that the exam can ask<br />
more questions about a variety of material and can, therefore, cover<br />
more material. The length has nothing to do with the content.</li>
<li>Read and follow the directions carefully.<br />
a. Many times the test will have a sample question as a guide.<br />
b. Do as the exam asks: Circle, Underline, List. etc.<br />
c. Watch the wording.</li>
<li>Be sure you understand the question. Reread or comeback later, if necessary.</li>
<li>Don&#8217;t spend too much time on any one question. Mark It and check later. Sometimes a later question will &#8220;trigger&#8221; your memory. If not, you&#8217;ve only lost a few points.</li>
<li>Do not think the every question is out to trick you. Questions are to test knowledge, not semantics.</li>
<li>Use cunning. Watch for those give away words (Always, All, Every, Some, Usually).</li>
<li>In answering matching questions, do the ones you know and cross<br />
out the answers as you go along. You&#8217;ll save time by not having to look through all of the terms for the answer you select.</li>
<li>In multiple choice questions, mark out the wrong choices to eliminate.<br />
Then read the statement through and see if you agree with your answer.</li>
<li>In completion of questions, watch the endings (a, an), length of line,<br />
number of lines. These are clues to answers.</li>
<li>Read the whole question twice! Pay particular attention to questions that have an &#8220;all of the above&#8221; alternative. Some test takers stop reading the question if the first answer is right. If two of the answers are right, the third must be right, and &#8220;all of the above&#8221; is the correct answer.</li>
<li>Mark clearly those questions you got stuck on. When you finish the test,run back through and spend extra time on these. Don&#8217;t change answers. This is the usual panic time and you&#8217;ll tend to want to read over the whole test. Don&#8217;t do that.</li>
<li>When you have accomplished all this, end your test!!!!</li>
</ol>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/career-cert/beating-the-exam-jitters/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>The Secret is in the Thinking</title>
		<link>http://www.dbanotes.com/career-cert/the-secret-is-in-the-thinking/</link>
		<comments>http://www.dbanotes.com/career-cert/the-secret-is-in-the-thinking/#comments</comments>
		<pubDate>Sun, 04 Jan 2009 20:07:08 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[Career & Certification]]></category>

		<guid isPermaLink="false">http://www.dbanotes.com.php5-1.dfw1-1.websitetestlink.com/?p=181</guid>
		<description><![CDATA[Critical thinking is what is tested by all computer certifications across the country. Its proponents use the term to emphasize what they believe to be a superior and more relevant style of testing&#8211;one in which the focus of the exam is the testing of technical knowledge combined with reasoning and judgment skills.

Today&#8217;s global, technologically dependent, [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Critical thinking is what is tested by all computer certifications across the country. Its proponents use the term to emphasize what they believe to be a superior and more relevant style of testing&#8211;one in which the focus of the exam is the testing of technical knowledge combined with reasoning and judgment skills.</p>
<p><span id="more-181"></span></p>
<p>Today&#8217;s global, technologically dependent, constantly-changing economy has placed new demands on IT professionals. No longer does the American economy need massive numbers of relatively unskilled manufacturing workers to fill assembly lines. The United States is a &#8220;post-industrial&#8221; economy&#8211;one that is increasingly specializing in higher-paying information and technology fields (genetics, computer science, systems analysis, medicine, engineering, finance, education, entertainment, resource management, consulting, etc.)</p>
<p>It is difficult to precisely define critical thinking because it has many specific interpretations, probably as many as there are different certification exams. It is probably easier to explain what it is not.</p>
<p>It is not the passive absorption of the course material, without the questioning of assumptions and unproved claims regarding it. It is not about being able to associate particular terms with familiar-sounding words from a course or by remembering distinctive words from a textbook definition of a key term.</p>
<p>It is not the kind of education that requires memorization of descriptive information. It does not highly value simple recall of data. It does not worship the collection of information for its own sake, if that knowledge is not used and applied to the real world.</p>
<p>No matter how proficient a student is at memorization, he or she will never be able to compete with even an obsolete computer, and the computer is far cheaper to maintain than an employee. Employers therefore are searching for employees that can do what a computer cannot do&#8211;think.</p>
<p>Unfortunately, our schools have been slow to respond, still turning out graduates that are ready for the 1950s industrial economy. American grade schools often are less rigorous than those of our trade competitors, and demand little critical thinking from students. By the time students reach college, many are poorly prepared for the task. This, combined with the larger-than-ever numbers of students entering higher education today, has made the problem even more challenging for the business community.</p>
<p>Nevertheless, it is a challenge that committed educators and serious students must meet. Whether a job or further study awaits you after certification, the most important thing you can acquire from your studies is an enhanced ability to think critically.</p>
<p>If you want to have an exciting and well-paying career in today&#8217;s economy, you must recognize that your education, in some form or another, will never end. Therefore, you must first learn how to learn; everything else is secondary. Data changes, and information must be updated, but every reasoning skill you develop will reward you forever.</p>
<p>By no means does this mean that it is unimportant that you know every intricate detail of the Oracle architecure, or the correct syntax for a SQL statement. Facts are important, and ignorance of fundamental information is crippling.</p>
<p>However, consider for a moment something about which you personally know a lot of detailed information. Is this the case because you set down at a table and memorized it? Or is it because you have used or analyzed this information extensively? It is much easier to remember that about which you have thought deeply.</p>
<p>Further, unless you have acquired critical thinking skills you may not be able to distinguish between accurate information and disinformation. The &#8220;truth&#8221; and the &#8220;simple facts&#8221; are not always so easily identified. Thus, the study of raw facts must be married with the study of critical thinking.</p>
<p>As noted above, critical thinking may have different specific demands for individual Oracle tracks. Here are some examples of the kind things you should be able to do after you complete your certification study:</p>
<ul>
<li>recognize and evaluate sources of information</li>
<li>organizing, classifying, and prioritizing information</li>
<li>dividing concepts into individual parts and combining parts into a cohesive unit</li>
<li>comparing and contrasting related concepts and institutions</li>
<li>fusing isolated ideas into more sophisticated concepts</li>
<li>formulating relationships between concepts or things</li>
<li>identifying examples, recognizing symbolism, and making analogies</li>
<li>appreciating perspectives, motivations, and roles of various institutional actors</li>
<li>questioning core assumptions and unspoken understandings</li>
<li>weighting the significance of phenomena</li>
<li>analyzing logical argument and chains of thought</li>
<li>using and evaluating evidence to defend or attack a proposition</li>
<li>distinguishing between cause and effect</li>
<li>distinguishing between relevant factors and irrelevant factors</li>
<li>explaining unexpected phenomena and predicting events and results</li>
<li>testing hypotheses and choosing between alternatives</li>
<li>applying information and principles to the real world</li>
<li>measuring the short-term against the long-term and the costs against the benefits</li>
<li>creating and evaluating reforms and solutions to problems</li>
<li>expressing one&#8217;s ideas in persuasive writing</li>
</ul>
<p>In conclusion, critical thinking is about the use of information rather than its recall. It is far more interesting, more relevant to your needs, and arguably even easier than is memorization. </p>
<p>We all have the ability to think critically, and we all use these methods daily in our personal lives to make decisions. This is the essence of the certification exam.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/career-cert/the-secret-is-in-the-thinking/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SQL Server 2005 Data Types</title>
		<link>http://www.dbanotes.com/sqlserver-database/sql-server-2005-data-types/</link>
		<comments>http://www.dbanotes.com/sqlserver-database/sql-server-2005-data-types/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 21:54:32 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[SQL Server]]></category>

		<guid isPermaLink="false">http://dbanotes.com/?p=92</guid>
		<description><![CDATA[SQL Server 2005 has the following data types available:

Exact Numerics

BIGINT
INT
SMALLINT
TINYINT
BIT bit
DECIMAL
NUMERIC
MONEY
SMALLMONEY


Approximate Numerics

FLOAT
REAL


Date and Time

DATETIME
SMALLDATETIME


Character

CHAR
VARCHAR
TEXT


Unicode Character

NCHAR
NVARCHAR
NTEXT


Binary

BINARY
VARBINARY
IMAGE


Other 

CURSOR
SQL_VARIANT
TABLE
TIMESTAMP
UNIQUEIDENTIFIER
XML



]]></description>
			<content:encoded><![CDATA[<p></p><p>SQL Server 2005 has the following data types available:</p>
<ul>
<li><strong>Exact Numerics</strong>
<ul>
<li>BIGINT</li>
<li>INT</li>
<li>SMALLINT</li>
<li>TINYINT</li>
<li>BIT bit</li>
<li>DECIMAL</li>
<li>NUMERIC</li>
<li>MONEY</li>
<li>SMALLMONEY</li>
</ul>
</li>
<li><strong>Approximate Numerics</strong>
<ul>
<li>FLOAT</li>
<li>REAL</li>
</ul>
</li>
<li><strong>Date and Time</strong>
<ul>
<li>DATETIME</li>
<li>SMALLDATETIME</li>
</ul>
</li>
<li><strong>Character</strong>
<ul>
<li>CHAR</li>
<li>VARCHAR</li>
<li>TEXT</li>
</ul>
</li>
<li><strong>Unicode Character</strong>
<ul>
<li>NCHAR</li>
<li>NVARCHAR</li>
<li>NTEXT</li>
</ul>
</li>
<li><strong>Binary</strong>
<ul>
<li>BINARY</li>
<li>VARBINARY</li>
<li>IMAGE</li>
</ul>
</li>
<li><strong>Other </strong>
<ul>
<li>CURSOR</li>
<li>SQL_VARIANT</li>
<li>TABLE</li>
<li>TIMESTAMP</li>
<li>UNIQUEIDENTIFIER</li>
<li>XML</li>
</ul>
</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/sqlserver-database/sql-server-2005-data-types/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Database Management 101</title>
		<link>http://www.dbanotes.com/database-administration/database-management-101/</link>
		<comments>http://www.dbanotes.com/database-administration/database-management-101/#comments</comments>
		<pubDate>Fri, 26 Dec 2008 21:51:17 +0000</pubDate>
		<dc:creator>Michael Ritacco</dc:creator>
				<category><![CDATA[Database Administration]]></category>

		<guid isPermaLink="false">http://dbanotes.com/?p=83</guid>
		<description><![CDATA[Author: Khaled Kahlouni
Companies have a wealth of information systems as they continue to collect mountains of data on a daily basis. The need to house their information and have them readily available will always be there. Therefore, creating, monitoring, and maintaining the databases that house the data, pose higher challenges on the Information Technology department; [...]]]></description>
			<content:encoded><![CDATA[<p></p><p>Author: Khaled Kahlouni</p>
<p>Companies have a wealth of information systems as they continue to collect mountains of data on a daily basis. The need to house their information and have them readily available will always be there. Therefore, creating, monitoring, and maintaining the databases that house the data, pose higher challenges on the Information Technology department; in specific, the database administrators and their management. Even though now-a-days, we continue to see improvement in hardware design, operating systems stability, and database engines features; the need for database lifecycle management, best practices, and process standardization has not and will not change anytime soon.</p>
<p>Databases are the heart and soul of every systems/applications built or acquired within an organization. They are the center of all information, data movement, and communication of all systems. If the data is the most valuable asset of every company so is the database that houses it, making the database administration role the most critical job in IT. Therefore, effective database management is an essential task to ensure the availability, performance, recoverability, and security of such asset. Unfortunately, most companies do not realize the importance of the staff that administers their most valuable asset. They understand the need to have a staff but they always question their value and of course, their compensation. Thus, pressuring the Database Administrator staff to do nothing but, monitor the databases.</p>
<p>Database Administrators are highly talented individuals. They have to maintain their skills and keep up with new DBMS technology. In addition, they have to have a good understanding of all applications, data behavior, and hardware technology as they swiftly solve issues and problems with the databases they support &#8211; They are excellent problem solver individuals. So, their talent is beyond administration. But, due to the wrong perception by their management, their concentration is usually shifted to only monitoring and backing up the database, leaving several database administration roles un-played. Thus, forcing the database administrators to lose the essential skills to maintain and administer the most valuable company asset &#8211; Databases.</p>
<p>Every IT professional should try to answer the following questions as a health check:</p>
<ul>
<li>Have you ever tested recovering your production databases?</li>
<li>How many times your database backup fails because of hardware or tape issues?</li>
<li>How many times problems occur after a release or a migration?</li>
<li>How many non-DBA users have more than read access to your production databases?</li>
<li>How many times were you notified by your users of a problem before your staff knowledge of the problem?</li>
<li>Do you keep current inventory of all databases?</li>
<li>Do you know what your users query of your database?</li>
<li>In case the data was lost, can your company survive?</li>
</ul>
<p>This study will help your organization understand the necessary database administration roles. Most importantly, it will lay the proper roadmap for database administration.</p>
<p>The roadmap will guide your organization on how to be proactive rather than reactive. Catching and solving database problems before they occur proven to be more cost effective than reacting to the problem. For instance, using our roadmap will force you to monitor your space utilization. Thus, alerting of any space issues prior to your database running out of space.</p>
<p>Study&#8217;s Outline:</p>
<ul>
<li>General Assessment Process</li>
<li>Understand Current Environments</li>
<li>Database Management lifecycle Establishment</li>
<li>Improvement Plan</li>
<li>Measurement Process</li>
<li>Production Maturity Process</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://www.dbanotes.com/database-administration/database-management-101/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
