Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 6712169
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 26, 20262026-05-26T08:13:40+00:00 2026-05-26T08:13:40+00:00

I am trying to put an index on a column that will hold URLs.

  • 0

I am trying to put an index on a column that will hold URLs. Since the maximum length of a URL an be over 2000 characters long I set the data type to NVARCHAR(3000). When I did this I got the error The total size of an index or primary key cannot exceed 900 bytes. Since I may need to search for records by URL i will need an index on my URL Column. Is there a way around this limitation?

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-26T08:13:41+00:00Added an answer on May 26, 2026 at 8:13 am

    You could create a computed column for the checksum of the URL and then use the checksum in the query. Checksums will not be unique, but it will quickly narrow down the number of possible matches.

    First, add a computed column to your table, like this:

    Alter Table YourTableName Add URL_HASH As CheckSum(URL)
    

    Now index the column like this:

    Create Index idx_YourTableName_URL_HASH On YourTableName(URL_HASH)
    

    Now you can write a query that will do an index seek to find the row you are looking for:

    Select URL
    From   YourTableName
    Where  URL_HASH = CheckSum(N'google.com')
           And URL = 'google.com'
    

    This method should work very well for exact matches. If you want partial matches, you’re better off using the full text search functionality.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I trying to put together an Android app that will take a picture and
I am trying to put together an index using terms, which I specify as
On this page: http://www.palosverdes.com/sandbox/9slategrey/index.cfm I'm trying to put in a new menu (the one
I am trying to put some custom text on the popup that asks for
Basically, I am trying to put a semi-transparent div over an image to serve
i am trying to put an html element -that i want to use to
I'm trying to put a constraint onto a route that does not want to
I've got a mysql database and I'm trying to put a url and unique
We are trying to put several Tb in to MySQL Cluster, unfortunately the index
I am trying to put this function ((click_add)) in library so that i can

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.