Viewing 10 posts - 1 through 10 (of 10 total)
Solved. Logins, users, schema and database owners are all okay.
The issue that I'm having is that I have the original database hard coded in the stored procedures. I was fooled...
April 16, 2012 at 8:34 am
Yes, I didn't create any logins. Neither server logins nor database users. I was following the example where I restored a production database and apart from having to create a...
April 16, 2012 at 7:11 am
Yes, I ran exec sp_change_users_login 'report' with the focus on the new database. It didn't return anything.
Profiler didn't give me any new information. The SPID was correct.
Let's remove the application...
April 16, 2012 at 6:26 am
Larry, I can change the connection string to point to a restored copy of the production database and it works fine. Two things are different. This database came from a...
April 15, 2012 at 4:44 pm
Perry, I ran
exec sp_change_users_login 'report'
but it returned nothing.
George, the server logins all default to master. I did this to ensure the application didn't get steered in...
April 15, 2012 at 4:36 pm
Open a new query window against the newly restored database and run the following
exec sp_change_users_login 'report'
Perry, I ran this and it returned nothing. I see this is part of an...
April 15, 2012 at 4:20 pm
On this server I have one instance of SQL Server running and including the new database, three databases.
April 15, 2012 at 2:00 pm
When a database is restored it is owned by the user performing the restore. Since I was running SSMS as sa when I perform the restore, the new database owner...
April 15, 2012 at 1:45 pm
Thanks for your reply. I'm sure the application is pointing to the new database because of the error message when I delete the user. The message tells me that the...
April 15, 2012 at 1:05 pm
I'm using SQL Server 2008.
To get the script to work for decimal numbers like 35.12, I had to change
when isnumeric(ExtRef) = 1 then ExtRef
to
when isnumeric(ExtRef) = 1 then...
November 20, 2008 at 6:51 am
Viewing 10 posts - 1 through 10 (of 10 total)