Viewing 15 posts - 181 through 195 (of 2,387 total)
Create all necessary logins that are in your original database in new server, restored the database and run stored procedure "sp_change_users_login" to map the users in restored database to the logins...
December 1, 2004 at 11:38 am
I seen someome reported similar problem in this forum but can't remember how do they resolved it.
November 30, 2004 at 12:31 pm
What is your SQL Server authentication mode?
November 30, 2004 at 12:29 pm
If you have SMS server, try to create it into a SMS package and push it to all your machines.
November 30, 2004 at 8:16 am
Has the app's admin account been granted to access SQL Server?
Did non-admin accounts work with TCP/IP? Same question too, are they granted to access SQL Server?
November 30, 2004 at 8:09 am
You should be fine by removing the 7.0 version from control panel but it is always to be good if you could test it.
November 29, 2004 at 11:54 am
Try to use UNC path.
EXECUTE sp_makewebtask @outputfile = N'W:\sites\ww\default2.asp', @query=N'EXECUTE [WWWServices2]', @templatefile=N'\\yourservername\sharename\sites\ww\default.tpl', @dbname=N'WWWServices', @whentype=9,@procname=N'web_task_WWWServices2',@codepage=65001,@charset=N'utf-8'
November 26, 2004 at 2:50 pm
What error messages did you get?
November 26, 2004 at 1:59 pm
Detach it, rename the file name and re-attach.
You can change the logical file name too with "alter database modify file" command.
November 25, 2004 at 1:00 pm
You can't declare int type since it is Integer (whole number), Use declare @var decimal (7,4).
November 25, 2004 at 9:29 am
In addition, using more processors means managing more threads and requires more cache synchronization and SQL Server has more coordination to perform since it needs to slice and regroup...
November 25, 2004 at 9:24 am
We have seen turning the parallel on to certain degree has created heavy I/O into disk subsystem which becomes bottleneck for the performance.
You need try to find out what...
November 25, 2004 at 8:58 am
Or try dynamic query.
declare @cmd varchar(1024)
declare @orderby varchar(10)
select @cmd = "select * from authors order by " + @orderby
exec (@cmd)
November 24, 2004 at 12:48 pm
Viewing 15 posts - 181 through 195 (of 2,387 total)