Question

In: Computer Science

in reference to SQL Database, what are some benefits of creating sequences, indexes, and synonyms?

in reference to SQL Database, what are some benefits of creating sequences, indexes, and synonyms?

Solutions

Expert Solution

Benefit of creating sequencing -->

Sequences are database objects from which multiple users can generate unique integers. The sequence generator generates sequential numbers, which can help to generate unique primary keys automatically, and to coordinate keys across multiple rows or tables.

Without sequences, sequential values can only be produced programmatically. A new primary key value can be obtained by selecting the most recently produced value and incrementing it. This method requires a lock during the transaction and causes multiple users to wait for the next value of the primary key; this waiting is known as serialization. If developers have such constructs in applications, then you should encourage the developers to replace them with access to sequences. Sequences eliminate serialization and improve the concurrency of an application.

Creating Sequences >

CREATE SEQUENCE emp_sequence
      INCREMENT BY 1
      START WITH 1
      NOMAXVALUE
      NOCYCLE
      CACHE 10;

Benefit are

1-> , a sequence is a database object that guarantees you a unique number. This is often useful when trying to generate a value for a primary key

2-> When you ask for the next value from a sequence, a number is generated or incremented without having to invoke a transaction which the database needs to commit or rollback.

3-> Multiple users can access the same sequence, and values can be cached in memory to improve performance, although you may get gaps in your values as sequences are not necessarily guaranteed to be sequential..

4-> You could write your own code to generate a unique sequential number but you would be likely to create a bottleneck in your application if lots of users are trying to update the table column that stores the next value at the same time: this is avoided if you use Oracle sequences.

5-> I'd like to think that it is possible to implement such feature using string, like uuid or hash string. But number is the easiest to be understood by the client. And client applications, depending on the language may have different ways to implement string. Whereas integers are native.

Benefit

  • Speed up SELECT query
  • Helps to make a row unique or without duplicates(primary,unique)
  • If index is set to fill-text index, then we can search against large string values. for example to find a word from a sentence etc.
  • Their use in queries usually results in much better performance.
  • They make it possible to quickly retrieve (fetch) data.
  • They can be used for sorting. A post-fetch-sort operation can be eliminated.
  • Unique indexes guarantee uniquely identifiable records in the database.
    • Synonyms
    • Benefits

    • SYNONYMs provide a layer of abstraction over the referenced object
    • Allow changes to complicated (multi part) and lengthy names with a simplified alias as a same server resident object.
    • Provides flexibility for changing the location of objects without changing existing code.
    • SYNONYMs can be created in the same database to provide backward compatibility for older applications in case of drop or rename of objects.
    • SYNONYMs can be useful if you give the front-end query tools like spreadsheets and Access linked tables direct links in to the tables.
    • Limitations

    • SYNONYMs are loosely bound to the referenced objects. So you can delete a SYNONYM without getting any warning that it is being referenced by any other database object.
    • Chaining is not allowed. It means that you can not create SYNONYM of a SYNONYM.
    • Obviously consumes possible object names, as you can not create a table with the same name of a synonym
    • The object for which the SYNONYM is being created is checked at run time. It is not checked at creation time. So this means that if you make any related error e.g. spelling error, the synonym will created, but you will get an error while accessing the object.
    • SYNONYM can not be referenced in a DDL statement

Related Solutions

What are some obstacles to creating a flexible workforce? What are the benefits?
What are some obstacles to creating a flexible workforce? What are the benefits?
Normalizing the Relational Model for the Student Project and Creating a Normalized SQL Database Patient (patientNo,...
Normalizing the Relational Model for the Student Project and Creating a Normalized SQL Database Patient (patientNo, name, address, phone, dateOfBirth, sex, insuranceCo, policyNo, relationshipToInsured) Appointment(patientNo, apptdate, appttime, reason, staffNo, visitNo) Visit(visitNo, patientNo, visitdate, visittime, duration, reason, visitType, visitCost, staffNo, roomNo) Staff(staffNo, name, title, specialty, address, phone) Availability(staffNo, availDate, startTime, endTime) InsurancePolicy (company, policyNo, insuredName, policytype, medicalCoPay, labCoPay, pharmacyCoPay, startDate, endingDate) DiagnosisMenu(diagCode, diagName) ProcedureMenu(procCode, procName, cost) Room(roomNo, roomType, condition) PrescriptionScript(scriptNo, visitNo, dateWritten, itemPrescribed, quantityPrescribed, directions, numberRefills) LabTest(testNo, prescriptionNo, testype, testDate, testTime,...
Need answers for Normalization, Physical Design, Sql, And Security exam. 1. The database you're creating will...
Need answers for Normalization, Physical Design, Sql, And Security exam. 1. The database you're creating will be installed on a group of three servers. What feature of an enterprise RDBMS will allow one server to pick up the processing work if the main server becomes nonoperational? A. Failover B. Business intelligence C. Data warehouse D. Load balancing 2. What type of clause must you always use with DELETE or UPDATE to avoid inadvertently changing data elsewhere in the database? A....
In sequences and series what is a sequence and what is a series? Mention some types of sequences?
In sequences and series what is a sequence and what is a series? Mention some types of sequences?
So currently I am working on some SQL with python which is linked to my database...
So currently I am working on some SQL with python which is linked to my database and I am stuck on a split problem. So in the program it connects to the database and then next you input either list, add, update, remove or allocate. So lets say I want to add a new data into the database you just need to write: update -name='Ava - #2' -class=2. After you type this there is a variable called val which does...
a) What are the most important differences between MS Access and as Server database like SQL...
a) What are the most important differences between MS Access and as Server database like SQL Server? b) Does Access have any advantages over SQL Server? c) Describe one or more scenarios where you would recommend upgrading an existing MS Access application to SQL Server. Not the use of SQL Server Express edition.
In you own words explain what relationship database is. Discuss the benefits of using relationship database...
In you own words explain what relationship database is. Discuss the benefits of using relationship database for improving workflow and efficiency of business decision-making processes.
Describe what each line does in the following SQL query The lyrics database is provided under...
Describe what each line does in the following SQL query The lyrics database is provided under question 3 for context 1. select studioID, studioname, base from salespeople sa inner join studios st on (sa.salesID = st.salesid) where base < 300 2. select concat_ws(' ', firstname, lastname) as "Member Name"         from members; 3. select m.lastname, m.firstname, s.lastname         from members m inner join salespeople s using (salesID)         order by m.lastname asc; The lyrics database is provided below DROP TABLES...
Introdyction to database Topic SQL Q2) what is the purpose of following statements? SELECT DISTINCT SELECT...
Introdyction to database Topic SQL Q2) what is the purpose of following statements? SELECT DISTINCT SELECT DESC AND ORDER BY AS
In reference to unemployment benefits What are the theoretical effects of this policy on the labour...
In reference to unemployment benefits What are the theoretical effects of this policy on the labour market? Discuss using graphs and equations where appropriate. (Please provide as detailed a response as possible)
ADVERTISEMENT
ADVERTISEMENT
ADVERTISEMENT