Viewing 15 posts - 1,291 through 1,305 (of 2,387 total)
After enabling AWE, SQL Server will reserve almost all available memory, leaving 128 megabytes (MB) or less. In your situation, You really don't have to enable it because there is...
August 21, 2003 at 9:16 am
Which edition of your SQL Server? How do you configure the memory allocation for SQL Server?
August 21, 2003 at 8:32 am
Which version of SQL Server do you run?
August 21, 2003 at 8:25 am
Logins are in master database. If you detach and attach database from one server to another server, you may have to move the logins too.
Edited by - allen_cui on 08/21/2003...
August 21, 2003 at 8:17 am
You may check the registry key \\hkey_local_machine\software\microsoft\mssqlserver\tds.
Try Registry Extended Stored Procedures like xp_regread and xp_regwrite to read, write and delete registry values.
http://databasejournal.com/features/mssql/article.php/1462641
August 21, 2003 at 8:15 am
Execute permissions for xp_cmdshell default to members of the sysadmin fixed server role, but can be granted to other users.
As Shoayb suggested, you can setup proxy account for those...
August 21, 2003 at 8:01 am
By default, TempDB is created in same folder as other system databases such as master. The drive that holds these databases may not large enough for TempDB.
August 21, 2003 at 7:35 am
It has all database objects including stored procedures.
August 20, 2003 at 2:25 pm
You can move tempdb files by using the ALTER DATABASE statement.
1.Determine the logical file names for the tempdb database by using sp_helpfile as follows:
use tempdb
go
sp_helpfile
go
The logical name for...
August 20, 2003 at 2:24 pm
You should have virus scan to your database server but to exclude scaning MDF and LDF files.
August 20, 2003 at 2:21 pm
quote:
Can stored procedures be written querying data from 2 databases on the same server?
August 20, 2003 at 2:19 pm
Please post complete log information on sqlstp9.log from both nodes.
August 14, 2003 at 10:09 am
Viewing 15 posts - 1,291 through 1,305 (of 2,387 total)