Articles for tag: Microsoft Access, Sql

Karla News

Guide to Microsoft Access JOIN Statements

Though basic queries work well in a Microsoft Access database, sometimes you need something a little more powerful, like a join query. Joins allow you to gather data from multiple tables at one time based upon existing relationships. Relationships can include one-to-one, one-to-many and many-to-many. Depending on your needs, there are several different types of ...

Karla News

RDBMS Components

RDBMS Components Two important pieces of RDBMS architecture are the kernel, which is the software, and the data dictionary, which consists of the system-level data structures used by the kernel to manage the database. The RDBMS Kernel You might think of an RDBMS as an operating system (or set of subsystems), designed specifically for controlling ...

Karla News

Software Reviews – Crystal Reports

Crystal Reports is a dynamic program that allows for a decent degree of customization. For the sake of simplicity, I have listed the pros and cons below, each based on my own experiences with this program over the past few years. Pros: Has a nice wizard that helps less experienced users select tables and create ...

Karla News

How to Setup SQL Server 2005 Backups

Microsoft SQL Server is a very powerful and robust database application. It is the premiere choice of most large organizations who utilize a database solution. In most cases the data being stored in these databases are mission critical and coming up with a disaster recovery plan is top priority. There are many parts to a ...

Display Table Information by SQL

By using the “CREATE TABLE” command you can create a table in SQL. What if you want to see the contents of table? In SQL you can see the contents of your table using the command “SELECT”. Using select command you can see the data of your table in four formats: 1. All rows, all ...