Hello,
I ran the Log Scanner and received the following error: Import Failed Due To Duplicate Entry Error
The Diagnosis is to run the following inquiry. How do I do that?
select
username
from
logininfo
group
by
username
having
count
(username)>1;
Any help is greatly appreciated!
You have to run that against the SQL databse. Also, the database is supposed to be setup to be case sensitive. Which means the username should actually be capitalized as the column is in all caps in the table definition.
select USERNAME from logininfo group by USERNAME having count(USERNAME)>1;
Thanks, Davin! I'll ask an engineer to run it for me.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Online forums and learning are now in one easy-to-use experience.
By continuing, you accept the updated Community Terms of Use and acknowledge the Privacy Policy. Your public name, photo, and achievements may be publicly visible and available in search engines.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.