If DSMOnline Backend throw this error, try to run below command.
It will reset the performance counter, and fix that error.
- Open command prompt as Adminsitrator
- Type “lodctr /R”
- Enter
Have a fun!
If DSMOnline Backend throw this error, try to run below command.
It will reset the performance counter, and fix that error.
Have a fun!
The problem happened on new server which has Germany version of Windows 2008 R2 Standard Server. When I install SQL 2012 Server, and try to add new login, then I got below error message.
If you google with some phrase in this error message, you will see a lot of post regarding it. On this time, this article helped me.
The reason of this problem was mismatching language version of OS and SQL Server. Because I installed SQL Server English version, it try to call login name based on English environment. However, since OS use Germany as its language, so account name is different. That caused this mismatching. And the end, it will produce error 15401.
Name of “Network Service” on each language version.
English : NT Authority\Network Service
Germany : NT-AUTORITÄT\NETWERKDIENST
Workaround for this problem is to use below sql. So it automatically create new login.
CREATE LOGIN [NT-AUTORITÄT\NETWERKDIENST] FROM WINDOWS
[JP]
SQL Serverにて新規ログインを追加しようとした際に、エラーが発生してログインを追加出来ない。
Google先生にこのエラーに関して聞くと、色々教えてくれます。
今回はこちらの記事に助けて頂きました。
原因は使用しているOSの言語設定と、インストールしたSQL Serverの言語の相違による呼び出しログイン名の不一致です。
英語OSの場合、Network Serviceは通常「NT Authority\Network Service」として登録されています。ですので、英語版のSQL Management Studioにてログインを追加しようとすると、この名前が使われます。今回はOSがドイツ語版であったため、ログイン名が異なり、「NT-AUTORITÄT\NETWERKDIENST」が正式名となります。
解決策は以下の通り。ログインを追加したい場合は以下のSQLを直接叩きます。
CREATE LOGIN [NT-AUTORITÄT\NETWERKDIENST] FROM WINDOWS
[EN]
Today, I’d like to post small tips regarding DirectSmile Integration Server.
When you see empty Item Repository in DSMI Frontend even though everything configured properly, then the reason of you problem could be “Time Setting” of your local computer.
Here is the possible case which cause empty Item Repository.
It because DSMI validate the date and time of your local machine, and in the case it doesn’t match with server time, those behavior will appear as result of this mismatching time on both machines.
[JP]
今日はちょっとしたTipsを。
もしDSMIのItem Repositoryにどのアイテムも表示されない場合は、多くのケースではお使いのPCの時間設定が起因しています。
ケース1.サーバーの現在時刻とクライアントPCの現在時刻がが5分以上ずれている
ケース2.サーバー、またはクライアントPCの時間設定にて”夏時間に自動的に調整する”オプションが設定されており、片方では設定されていない。
どちらの場合にも、DSMIによる時間設定のチェックにて不適合が起こり、結果としてアイテム・レポジトリ内に何もアイテムが表示されないという現象が発生します。その場合は、時間設定をチェックすることで解決出来る事が多いです。