Jump to content

Sql dba unnara va evarina..


Sarvapindi

Recommended Posts

11 hours ago, chapstick said:

Is this not developers work ?

performance tuning  in most of the companies is DBA task

Link to comment
Share on other sites

4 minutes ago, dasari4kntr said:

then..

try the memory optimized tables...like below...

may be..you need to little research on that option....

 


CREATE TABLE dbo.ShoppingCart (   
    ShoppingCartId INT IDENTITY(1,1) PRIMARY KEY NONCLUSTERED,  
    UserId INT NOT NULL INDEX ix_UserId NONCLUSTERED
        HASH WITH (BUCKET_COUNT=1000000),
    CreatedDate DATETIME2 NOT NULL,   
    TotalPrice MONEY  
    ) WITH (MEMORY_OPTIMIZED=ON)   
GO  

Memory optimization works better in 2016.not on 2014..just an info

  • Upvote 1
Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...