Re: JDBC and SQL server 2000
I don't think you can use Windows authentication for JDBC to SQL Server, you have to use SQL Server authentication. See http://support.microsoft.com/default...b;en-us;313100
You will need to use TSQL to create users on your users SQL Server if they do not already exist.
Re: JDBC and SQL server 2000
Thank you very much.
One SQL server related question: Can I create the user on that specific DB so that after backup(on my computer)-restore(on the user's computer) I would not have to create the user again?
Also do I have to grant exec access to my stored procedures only or is it smthng more that I need?
I have tried to create a user but I could not connect that's why I am asking...
Re: JDBC and SQL server 2000
I'm not sure if users are sored in a backup (I would imagine so however). When ever I transfer a database, I usually end up creating a login with the command sp_addlogin (see http://msdn.microsoft.com/library/de..._adda_0q7i.asp)
Re: JDBC and SQL server 2000
Thanx again. If I don't manage to put it in the backup, I'll do it in a batch using sp_addlogin.