Import users

Alkro
Member Posts: 115
Hello,
We are installed SQL. The problem is...
We have more than 500 users in Navision. How can we create SQL users automatically? Any process to do this?
Regards
We are installed SQL. The problem is...
We have more than 500 users in Navision. How can we create SQL users automatically? Any process to do this?
Regards
0
Comments
-
You can create users in SQL Server using a script where you read the values from a table. If they are SQL users (not Windows users), you could write a NAV program to load the users in the user table (or use SQL if you are careful).David Machanick
http://mibuso.com/blogs/davidmachanick/0 -
Hi!
This script could generate the TSQL to create the logins/user on basisi of the NAV site "Database Logins" (no Windows Logins):set statistics io off go declare @userid varchar(20), @tsql varchar(1000) declare user_cur cursor for select [User ID] from Navision.dbo."User" -- change db name! open user_cur fetch next from user_cur into @userid while @@fetch_status = 0 begin set @tsql = ' USE [master] GO CREATE LOGIN [' + @userid + '] WITH PASSWORD = ''welcome'', CHECK_POLICY = OFF GO use [Navision] -- change db name! GO CREATE USER [' + @userid + '] FOR LOGIN [' + @userid + '] GO ' print @tsql fetch next from user_cur into @userid end close user_cur deallocate user_cur
But caution :shock: : the default password "welcome" is assigned to ALL users, you have to assure that users are changing it ASAP! The SQL feature MUST_CHANGE and CHECK_EXPIRATION do not work with NAV!Jörg A. Stryk (MVP - Dynamics NAV)
NAV/SQL Performance Optimization & Troubleshooting
STRYK System Improvement
The Blog - The Book - The Tool0
Categories
- All Categories
- 73 General
- 73 Announcements
- 66.6K Microsoft Dynamics NAV
- 18.7K NAV Three Tier
- 38.4K NAV/Navision Classic Client
- 3.6K Navision Attain
- 2.4K Navision Financials
- 116 Navision DOS
- 851 Navision e-Commerce
- 1K NAV Tips & Tricks
- 772 NAV Dutch speaking only
- 617 NAV Courses, Exams & Certification
- 2K Microsoft Dynamics-Other
- 1.5K Dynamics AX
- 320 Dynamics CRM
- 111 Dynamics GP
- 10 Dynamics SL
- 1.5K Other
- 990 SQL General
- 383 SQL Performance
- 34 SQL Tips & Tricks
- 35 Design Patterns (General & Best Practices)
- 1 Architectural Patterns
- 10 Design Patterns
- 5 Implementation Patterns
- 53 3rd Party Products, Services & Events
- 1.6K General
- 1.1K General Chat
- 1.6K Website
- 83 Testing
- 1.2K Download section
- 23 How Tos section
- 252 Feedback
- 12 NAV TechDays 2013 Sessions
- 13 NAV TechDays 2012 Sessions