<?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>decryption Archives -</title>
	<atom:link href="https://mitindia.in/tag/decryption/feed/" rel="self" type="application/rss+xml" />
	<link>https://mitindia.in/tag/decryption/</link>
	<description></description>
	<lastBuildDate>Sat, 31 Dec 2016 05:57:37 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>
	hourly	</sy:updatePeriod>
	<sy:updateFrequency>
	1	</sy:updateFrequency>
	<generator>https://wordpress.org/?v=6.9.4</generator>

<image>
	<url>https://mitindia.in/wp-content/uploads/2023/03/cropped-android-chrome-512x512-1-32x32.png</url>
	<title>decryption Archives -</title>
	<link>https://mitindia.in/tag/decryption/</link>
	<width>32</width>
	<height>32</height>
</image> 
	<item>
		<title>Maintaining the Database</title>
		<link>https://mitindia.in/maintaining-the-database/</link>
		
		<dc:creator><![CDATA[SKB]]></dc:creator>
		<pubDate>Fri, 30 Dec 2016 07:20:54 +0000</pubDate>
				<category><![CDATA[Management]]></category>
		<category><![CDATA[PHP-MySQL]]></category>
		<category><![CDATA[database management]]></category>
		<category><![CDATA[decryption]]></category>
		<category><![CDATA[encryption]]></category>
		<category><![CDATA[security]]></category>
		<category><![CDATA[user level security]]></category>
		<guid isPermaLink="false">http://www.mitindia.in/?p=674</guid>

					<description><![CDATA[<p>Maintaining the Database [MS Access] Database Security is essential Security can be administered in the form of: -A database Password -User-Level Security Compacting a Database -Backing up a Database -Importing and Linking external data Database Password &#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211; -Simplest mode of securing a database. -Not very fool proof. -Database password to be used for opening database [&#8230;]</p>
<p>The post <a href="https://mitindia.in/maintaining-the-database/">Maintaining the Database</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></description>
										<content:encoded><![CDATA[<h3><strong>Maintaining the Database [MS Access]</strong></h3>
<hr />
<p><img decoding="async" class="wp-image-675 alignright" src="http://www.mitindia.in/wp-content/uploads/2016/12/db-300x199.jpg" alt="Database Management" width="213" height="141" />Database Security is essential<br />
Security can be administered in the form of:<br />
<em>-A database Password </em><br />
<em>-User-Level Security</em></p>
<p><strong> <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- mylink -->
<ins class="adsbygoogle"
     style="display:block"
     data-ad-client="ca-pub-1696390399604457"
     data-ad-slot="7690934410"
     data-ad-format="link"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script><br />
Co</strong><strong>mpacting a Database</strong><br />
-Backing up a Database<br />
-Importing and Linking external data</p>
<p><strong>Database Password</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
-Simplest mode of securing a database.<br />
-Not very fool proof.<br />
-Database password to be used for opening database and accessing data from it.</p>
<p><strong>Encryption</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
The encrypted database cannot be read by using any Disk Editors.<br />
Encrypting a database degrades its performance. The RDBMS takes care of ‘Decrypting’ the database.</p>
<p><strong>User Level Security</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
1. Read, Write, Delete and modify structure of tables<br />
2. Read, and Write<br />
3. Only Write</p>
<p><strong>Groups</strong><br />
&#8212;&#8212;&#8212;&#8211;<br />
Very useful when there are a number of people who are performing the same role.</p>
<p><strong>Assigning permissions</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
GRANT: Grants permissions to user.<br />
GRANT SELECT, INSERT ON OrderMaster TO john;</p>
<p>REVOKE: Revokes permissions from user.<br />
REVOKE INSERT ON OrderMaster FROM john;</p>
<p><strong>The Data Dictionary</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
Data dictionary stores Meta data (data about data)<br />
Oracle maintains all this information in “System Tables”</p>
<p><strong>Workgroup Information File</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Also called ‘Workgroup’ or ‘System’ file<br />
This file is called System.mdw<br />
Stores Usernames, Passwords and the Groups to which each user belongs.<br />
Access reads this file at startup<br />
Access cant start if this file is lost or damaged<br />
Created by Access at installation time<br />
New WIF is created through WRKGADM .EXE utility</p>
<p><strong>Optimising Tables</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
Tables need to be optimised to ensure that they operate efficiently.</p>
<p>1. Avoid Redundant Data<br />
2. Choose Appropriate Data Type<br />
3. Index Only When Necessary</p>
<p><strong>Compacting an Access Database</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;-<br />
1. A database gets fragmented due to addition, modification and removal of data.<br />
2. Scattering of data is called fragmentation.<br />
3. Compacting rearranges the way data is stored on the disk.<br />
4. Reduces disk space occupied by database and Increases speed of data retrieval.</p>
<p><strong>Backing up</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
1. Backup databases to prevent loss of data<br />
2. The workgroup information file also need to be backed up.<br />
3. Backups are typically maintained on devices like floppy zip or tape drive.<br />
4. Maintain a copy in a different location.</p>
<p><strong>Importing and Linking</strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;&#8212;<br />
Importing creates a duplicate copy of the data in Access. Changes made to the imported data does not affect the original data.</p>
<p>Linking creates a reference to the master database in Access. Changes made to the linked data is reflected in the original data as well.</p>
<h3><strong><em>Conclusion</em></strong><br />
&#8212;&#8212;&#8212;&#8212;&#8212;&#8211;<br />
1. Security is essential<br />
2. Access support different methods of security: Database password, Encryption and User level security.<br />
3. Access to database can be speeded up<br />
4. Database needs to be backed up from time to time<br />
5. External data can be linked or imported</h3>
<p><a class="a2a_button_whatsapp" href="https://www.addtoany.com/add_to/whatsapp?linkurl=https%3A%2F%2Fmitindia.in%2Fmaintaining-the-database%2F&amp;linkname=Maintaining%20the%20Database" title="WhatsApp" rel="nofollow noopener" target="_blank"></a><a class="a2a_button_facebook" href="https://www.addtoany.com/add_to/facebook?linkurl=https%3A%2F%2Fmitindia.in%2Fmaintaining-the-database%2F&amp;linkname=Maintaining%20the%20Database" title="Facebook" rel="nofollow noopener" target="_blank"></a><a class="a2a_dd addtoany_share_save addtoany_share" href="https://www.addtoany.com/share#url=https%3A%2F%2Fmitindia.in%2Fmaintaining-the-database%2F&#038;title=Maintaining%20the%20Database" data-a2a-url="https://mitindia.in/maintaining-the-database/" data-a2a-title="Maintaining the Database"><img src="https://static.addtoany.com/buttons/favicon.png" alt="Share"></a></p><p>The post <a href="https://mitindia.in/maintaining-the-database/">Maintaining the Database</a> appeared first on <a href="https://mitindia.in"></a>.</p>
]]></content:encoded>
					
		
		
			</item>
	</channel>
</rss>
