<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://www.conservapedia.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Isaac4given</id>
	<title>Conservapedia - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://www.conservapedia.com/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Isaac4given"/>
	<link rel="alternate" type="text/html" href="https://www.conservapedia.com/Special:Contributions/Isaac4given"/>
	<updated>2026-09-23T23:27:30Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.35.14</generator>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Talk:Prime_number&amp;diff=367589</id>
		<title>Talk:Prime number</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Talk:Prime_number&amp;diff=367589"/>
		<updated>2008-01-10T16:28:39Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: error testing primality of 4&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Primality testing - Problems with the number 4 ==&lt;br /&gt;
&lt;br /&gt;
When testing whether a number ''N'' is divisible by ''s'', using values of ''s'' from 2 to ''N'' - 1, when ''N'' is 4, the method correctly determines that 4 is not prime, because it is divisible by 2. This example is in the C programming language.&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
for (s = 2; s &amp;lt; N - 1; ++s) {&lt;br /&gt;
   if (N % s == 0) {&lt;br /&gt;
      printf(&amp;quot;N is not a prime number.&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
However, when using values of ''m'' from 2 to the square root of ''n'', when ''n'' is 4, an error can occur. Since 2 is the square root of 4, the test range is 2 to 2, and, if the range is exclusive, as in a for-loop, the whole test is skipped, and 4 is incorrectly determined to be a prime number.&lt;br /&gt;
&amp;lt;blockquote&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
for (s = 2; s &amp;lt; sqrt(N); ++s) {&lt;br /&gt;
   if (N % s == 0) {&lt;br /&gt;
      printf(&amp;quot;N is not a prime number.&amp;quot;);&lt;br /&gt;
   }&lt;br /&gt;
}&lt;br /&gt;
&amp;lt;/pre&amp;gt;&amp;lt;/blockquote&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[User:Isaac4given|Isaac4given]] 11:28, 10 January 2008 (EST)&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Structured_Query_Language&amp;diff=321999</id>
		<title>Structured Query Language</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Structured_Query_Language&amp;diff=321999"/>
		<updated>2007-10-25T16:44:09Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: sql transactions&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;SQL created by EF Codd at IBM (see his paper the relational model) is [[Structured Query Language]], a language for manipulating large data tables within a database.  Most relational databases have SQL embedded within them.  Users ask for the data they write a &amp;quot;[[database query|query]]&amp;quot; using SQL and the database quickly returns the data.&lt;br /&gt;
&lt;br /&gt;
== Transactions ==&lt;br /&gt;
&lt;br /&gt;
A transaction may include several SQL statements, but the statements are processed in an all-or-nothing fashion. The transaction represents logical work like a customer purchasing a product. For example, the statements may include adding the purchase price to the customer's account, and subtracting the product from inventory. If either statement is executed, they must both be executed, and if either statement is aborted, they must both be aborted. This is achieved by using the COMMIT statement and the ROLLBACK statement. Once all of the statements to execute for the current transaction have been entered, the COMMIT statement is entered, and the transaction is committed to the database. If any of the statements in the transaction cannot be completed, the entire transaction is rolled back, and none of the statements take effect.&lt;br /&gt;
[[Category:software]]&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=294427</id>
		<title>Database Management System</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=294427"/>
		<updated>2007-09-16T23:23:27Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: /* Definition */ expansion&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
DBMS stands for [[Database]] Management System.&lt;br /&gt;
&lt;br /&gt;
[[Category:Computer Science]]&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Data_dictionary&amp;diff=294425</id>
		<title>Data dictionary</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Data_dictionary&amp;diff=294425"/>
		<updated>2007-09-16T23:20:36Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: more information&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Description ==&lt;br /&gt;
&lt;br /&gt;
A '''data dictionary''' is a collection of [[database]] metadata, which is data about data. One kind of data dictionary is a human view of entities, attributes, and relationships, called a designer's data dictionary. There is usually a data dictionary that is internal to the [[DBMS]], called a system catalog, which contains additional system-generated metadata. A designer's data dictionary can be derived from the system catalog, and the terms &amp;quot;data dictionary&amp;quot; and &amp;quot;system catalog&amp;quot; are often used interchangeably.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
The purpose of a data dictionary is to make sure that all of the people who design and implement the database are on the same page in light of the entities, attributes, and relationships.&lt;br /&gt;
&lt;br /&gt;
== Database Designer's Database ==&lt;br /&gt;
&lt;br /&gt;
A data dictionary is sometimes called a '''database designer's database''' because it defines choices made in light of [[database]] design of entities and their characteristics.&lt;br /&gt;
&lt;br /&gt;
[[category:Computer Science]]&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=293307</id>
		<title>Database Management System</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=293307"/>
		<updated>2007-09-14T21:02:10Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: work was copyrighted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=293306</id>
		<title>Database Management System</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=293306"/>
		<updated>2007-09-14T21:01:47Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: work was copyrighted&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
The functions of a DBMS include data dictionary management, data storage management, and data transformation and presentation. The functions also include security management, multiuser access control, backup and recovery management, data integrity management, database access languages and application programming interfaces, and database communication interfaces.&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=293269</id>
		<title>Database Management System</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Database_Management_System&amp;diff=293269"/>
		<updated>2007-09-14T20:27:22Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: New page: == Definition ==  DBMS stands for database management system. A database management system is a collection of programs that manages the structure of databases and controls access to the da...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Definition ==&lt;br /&gt;
&lt;br /&gt;
DBMS stands for database management system. A database management system is a collection of programs that manages the structure of databases and controls access to the data stored in the databases.&lt;br /&gt;
&lt;br /&gt;
== Functions ==&lt;br /&gt;
&lt;br /&gt;
The functions of a DBMS include data dictionary management, data storage management, and data transformation and presentation. The functions also include security management, multiuser access control, backup and recovery management, data integrity management, database access languages and application programming interfaces, and database communication interfaces.&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
	<entry>
		<id>https://www.conservapedia.com/index.php?title=Data_dictionary&amp;diff=293037</id>
		<title>Data dictionary</title>
		<link rel="alternate" type="text/html" href="https://www.conservapedia.com/index.php?title=Data_dictionary&amp;diff=293037"/>
		<updated>2007-09-14T16:40:42Z</updated>

		<summary type="html">&lt;p&gt;Isaac4given: New page: == Description ==  A data dictionary is a collection of database metadata, which is data about data. One kind of data dictionary is a human view of entities, attributes, and relationships,...&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;== Description ==&lt;br /&gt;
&lt;br /&gt;
A data dictionary is a collection of database metadata, which is data about data. One kind of data dictionary is a human view of entities, attributes, and relationships, called a designer's data dictionary. There is usually a data dictionary that is internal to the DBMS, called a system catalog, which contains additional system-generated metadata. A designer's data dictionary can be derived from the system catalog, and the terms &amp;quot;data dictionary&amp;quot; and &amp;quot;system catalog&amp;quot; are often used interchangeably.&lt;br /&gt;
&lt;br /&gt;
== Purpose ==&lt;br /&gt;
&lt;br /&gt;
== Database Designer's Database ==&lt;/div&gt;</summary>
		<author><name>Isaac4given</name></author>
	</entry>
</feed>