Viewing 15 posts - 1,081 through 1,095 (of 1,365 total)
Make sure by inspecting the sql server logs thattrace flag 3608 is properly specified and sql server has started in single user mode(message in sql server error log). Sometimes specifying...
September 17, 2008 at 4:47 pm
Hi,
Execute the following code prior to database restoration and execute its output once the database is restored:
Orphan login fixation: DECLARE @user SYSNAME
DECLARE @login SYSNAME
DECLARE @sql NVARCHAR(300)
DECLARE cur_Users CURSOR FOR
SELECT su.name,sl.loginname
FROM...
September 17, 2008 at 10:00 am
Normally you shldn't shrink database at regular intervals. This will unncessarily consume server resources like CPU, memory in case database grows later.
Shrindatabase statement will lae 10 percent free space in...
September 16, 2008 at 5:05 am
Please read about it with workaround on:
HTH
MJ
September 12, 2008 at 3:33 pm
You need to apply service pack separately to the other new instance. It is instance specific.
MJ
September 12, 2008 at 8:24 am
As you are not making use of replication at this moment then backup the database, then restore it using the with move option to place the files in different locations.
HTH
MJ
September 11, 2008 at 4:51 pm
As per suggestion try the evaluation version of ApexSQL Diff tool.
MJ
September 11, 2008 at 10:12 am
To address the problem mentioned by DNA:
Client-side Redirect
In SQL Server 2005, if you connect to a database that is being mirrored with ADO.NET or the SQL Native Client, your application...
September 10, 2008 at 3:49 pm
Have you tried dropping linked servers using sp_droplinkedserver stored procedure?
MJ
September 10, 2008 at 3:39 pm
As said configuring and maintaining cluster is more complicated as compared to mirroring.
Benefits to Mirroring over Clustering
Cost (cheaper h/w, licenses)
No HCL requirements
Distance (you can have a server in another country)
Less...
September 10, 2008 at 1:43 pm
Do you see any change in available memory figure once you change the min server memory figure?
MJ
September 9, 2008 at 4:37 pm
Do you see any process outside SQL that is consuming memory? Also, have you tried reducing min server memory to a lower limit?
MJ
September 9, 2008 at 3:59 pm
Refer this link:-
http://technet.microsoft.com/en-us/library/ms190730.aspx
The Windows policy Lock Pages in Memory option is disabled by default. This privilege must be enabled to configure Address Windowing Extensions (AWE). This policy determines which accounts...
September 9, 2008 at 3:40 pm
Have you gone thru this link:-
Do let us know in case it works or not.
HTH
MJ
September 6, 2008 at 5:17 pm
Viewing 15 posts - 1,081 through 1,095 (of 1,365 total)