Viewing 15 posts - 691 through 705 (of 1,363 total)
Is that doamin account having privileges mentioned under
http://msdn.microsoft.com/en-us/library/ms143504.aspx
MJ
February 6, 2009 at 7:21 am
ALTER DATABASE Test1
ADD FILE
(
NAME = Test1dat2,
FILENAME = 'c:\Program Files\Microsoft SQL Server\MSSQL\Data\t1dat2.ndf',
SIZE = 5MB,
MAXSIZE = 100MB,
FILEGROWTH = 5MB
)
GO
http://msdn.microsoft.com/en-us/library/aa275464(SQL.80).aspx
MJ
February 6, 2009 at 7:07 am
Remove WITH (NOLOCK) and then compare.
MJ
February 6, 2009 at 5:19 am
Check the value of awe enabled under sp_configure output.
MJ
February 5, 2009 at 1:08 pm
Yes, we can as in 2005 this can be controlled by OS and applicable for SQL Server logins if password policy option is checked under login screen.
MJ
February 5, 2009 at 12:02 pm
Yes, you need to set max server memory when running under dynamic memory configuration.
To check Right Click Server Name under EM-->Memory Tab-->...
MJ
February 4, 2009 at 4:01 pm
Have this included in your restore statement after restore code
use [cs_DotNetNuke]
EXEC sp_addrolemember N'db_datareader', N'S602561DC4EW31\GPWebUser'
EXEC sp_addrolemember N'db_datawriter', N'S602561DC4EW31\GPWebUser'
HTH!
MJ
February 4, 2009 at 11:53 am
February 4, 2009 at 8:57 am
Max server memory should be configured so tht you leave 1-1.5GB of memory for OS. In case there are other applications running on this server then you need to reduce...
February 4, 2009 at 8:54 am
Then try creating a new login with same name as this user and associate that login with this user. Once it comes up under security-->users GUI then drop the user...
February 4, 2009 at 8:46 am
Can you plz post the output of
USE Databasename
sp_spaceused @updateusage = 'TRUE'
MJ
February 4, 2009 at 7:07 am
SQL Server 2005
In SQL Server 2005 the process of implementing Log Shipping is embedded with the Workgroup, Standard and Enterprise editions of SQL Server. To implement it, right click...
February 4, 2009 at 6:31 am
Is this resolved?
MJ
February 3, 2009 at 6:43 pm
Can you post the output of restore filelistonly from disk='complete backupfilepath.bak'?
MJ
February 3, 2009 at 5:23 pm
Have you checked http://support.microsoft.com/kb/300956
Or
Try installing with domain admin rights if this is not a stand alone instance.
MJ
February 3, 2009 at 11:44 am
Viewing 15 posts - 691 through 705 (of 1,363 total)