Quantcast
Channel: SQL Server “Denali”– SQLXpertise
Viewing all articles
Browse latest Browse all 28

SQL Server “Denali”– SEQUENCEs–Continued…

$
0
0

After reading my previous article about SEQUENCE one of my friend asked a question about the performance of using Sequence for quick and continuous generation and whether there is a way to create and manage this using Management Studio ?

Yes, SEQUENCE support CACHE option

  1. /* Create Sequence with Cache */
  2.  
  3. CREATE SEQUENCE RunningNumbers
  4. As INT
  5. MINVALUE 1
  6. NO MAXVALUE
  7. START WITH 1
  8. CACHE 500
  9. NO CYCLE;

 

Using CACHE option, you can specify how many values should be pre generated and available ready, you can set the cache size based on your application’ requirement.

Default cache size is 20

To use in Loop for quick processing

To get a range of numbers to use in a loop, you can use sp_sequence_get_range System stored procedure, so that you can get a range and not have to use NEXT VALUE option for each loop call

  1. /* Get Range of Numbers using Sequence */
  2. DECLARE
  3. @RANGE_FIRST_VALUE SQL_VARIANT,
  4. @RANGE_LAST_VALUE SQL_VARIANT,
  5. @RANGE_CYCLE_COUNT INT,
  6. @SEQUENCE_INCREMENT SQL_VARIANT,
  7. @SEQUENCE_MIN_VALUE SQL_VARIANT,
  8. @SEQUENCE_MAX_VALUE SQL_VARIANT;

 

  1. EXEC sp_sequence_get_range
  2. @sequence_name = 'RunningNumbers',
  3. @range_size = 15,
  4. @range_first_value = @range_first_value OUTPUT,
  5. @range_last_value = @range_last_value OUTPUT,
  6. @range_cycle_count = @range_cycle_count OUTPUT,
  7. @sequence_increment = @sequence_increment OUTPUT,
  8. @sequence_min_value = @sequence_min_value OUTPUT,
  9. @sequence_max_value = @sequence_max_value OUTPUT;
  1. SELECT
  2. 'RunningNumbers' AS [Sequence Name],
  3. @range_first_value AS [Sequence First Value],
  4. @range_last_value AS [Sequence Last Value],
  5. @range_cycle_count AS [Range Cycle Count],
  6. @sequence_increment AS [Sequence Increment],
  7. @sequence_min_value AS [Sequence Min Value],
  8. @sequence_max_value AS [Sequence Max Value];

image

You can use [Sequence First Value] and [Sequence Last Value] and use it in your loop to insert data.

How to create and manage SEQUENCE from Management Studio ?

Step 1 : Open SQL Server “Denali” Management Studio, and connect to SQL Server “Denali” instance and go to your database in Object Explorer

Step 2: Expand “Programmability” and then expand "Sequences"  to currently available ones

image

Step 3: To create a new sequence, right click on Sequence and click on “New Sequence”

image

Step 4: Specify the name and other required options such as Start Value, Increment By, etc.. and click “Ok” to create Sequence

image

Step 5: To modify the Sequence, right click on the selected sequence and click “Properties”

image

If you see the above screenshot, you might notice that Data Type, Precision or name of sequence can not be modified. You can change the other values, similarly you will see an option to restart the sequence as well.

Note: To rename you can use the “Rename” option in Context menu.

Step 6: To drop the sequence, right click on the selected sequence and click “Delete

image

Let me know your experiences and feedback about SEQUENCEs


Viewing all articles
Browse latest Browse all 28

Trending Articles