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 8901379
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: June 15, 20262026-06-15T01:20:22+00:00 2026-06-15T01:20:22+00:00

I am trying to exract the following character as unicode from a sql server

  • 0

I am trying to exract the following character as unicode from a sql server 2008 db

the character should be umlaut

Here is the schema information from the table

character_set_name    collation_name

iso_1                 SQL_Latin1_General_CP1_CI_AS

and here is my select statement

select 
    StudentName

from GenData.dbo.StudentInfo 
where StudentID = 105
order by studentname COLLATE SQL_Latin1_General_Pref_CP850_CI_AS

However the above still produces:

ö

does anyone know what i am doing wrong or how to extract this character? your help would be greatly appreciated.

Thanks

  • 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-06-15T01:20:24+00:00Added an answer on June 15, 2026 at 1:20 am

    If you change the column from char or varchar to nvarchar it should resolve the issue going forward.

    ALTER TABLE MyTable ALTER COLUMN MyField nvarchar(1234)
    

    Be mindful of using nvarchar in sql queries.

      'this is varchar'
      N'but this is nvarchar'
    

    As far as recovering the information already skewed, it is often a difficult process of trial and error from my experience. You could try inputting characters into varchar fields and using that information to scrub your data.

    INSERT INTO #transpose
    SELECT '' low, N'Ü' high
    UPDATE #transpose SET low = high
    
    Update MyTable 
    SET MyFIELD = REPLACE(MyField, low, high) 
    FROM MyTable 
    CROSS JOIN #transpose
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I'm trying to extract the following items from a C file: Comments (single and
I have been trying to extract e-mail addresses from the following code for quite
I am trying to extract the field 'name' or 'named-expr' from the following object:
I am trying to run the following to extract the text from all the
I am trying to extract an article ID from the following href: /MarketUpdate/Pricing/9352730 I
I'm trying to extract the domain from a URL. Following is an example script.
I am trying to extract text from XML similar to the following: <p>This is
I'm trying the extract the ProductValue from the following bit of Javascript: <script language=javascript
I am trying to extract the string from a file having following pattern within
I'm trying to extract values from the following statement using Regex , the statement

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.