Viewing 15 posts - 886 through 900 (of 1,335 total)
Not sure why the customer did that but the default path for data and log files is under a folder named data in the installation path which can be re-configured...
June 30, 2007 at 12:15 am
Yes it is possible. Give the operators execute permission on xp_cmdshell and in the OS level for the account starting the sql server give act as a part of operating...
June 30, 2007 at 12:13 am
IS your script bringing out huge amount of data. If this is possible i too have experienced such a situation with huge amount of data preffered to use QA than...
June 28, 2007 at 8:55 am
SQL Server recognizes name changes without any restart but for you since you have log shipping configured you need to check if there are any issues if so you can...
June 28, 2007 at 8:54 am
If you are not able to start sql services, then start sql services in single user mode and minimal configuration mode and then shrink the log file for model database.
June 28, 2007 at 8:52 am
Can you post us the hardware specifications. Also would like to know if the problem occurs in the server also or only if you use it from remote client.
June 28, 2007 at 7:15 am
You have posted in SQL 2005 forums thats why i said to use DB Mail feature. If 2000 you can get a procedure in this site the uses CDO messaging...
June 28, 2007 at 6:27 am
Yes you can use select * if you want to select all columns people say that you should specify the column names explicitly so that query optimizer can use the...
June 28, 2007 at 6:22 am
Yes even when fill factors are set rightly Reindexing/Reorganization has to be done periodically as fragmentation happens whenever data gets changed/added/removed. IN SQL 2005 ONLINE INDEXING can be done but...
June 28, 2007 at 6:19 am
create table spacedetails (name varchar(100),totrows bigint,reserved varchar(30), data varchar(30),index_size varchar(30), unused varchar(30))
insert into spacedetails
exec sp_MSForeachtable @command1 = "sp_spaceused '?'"
select name,totrows, replace(data,'KB','') as 'Data in KB',
replace(Index_Size,'KB','') as 'Index Size in KB' ...
June 28, 2007 at 5:43 am
You will get this error if you have windows authentication mode set in your server and try to use sql server login to logon to the server. Change the authentication...
June 28, 2007 at 5:28 am
SYSADMIN fixed role will have all and any privileges in the server. Even if you explicitly deny an access to the sysadmin fixed role it doesn't take affect and the...
June 28, 2007 at 5:11 am
An user with dbo rights on the database can perform any changes to the database you have to decide it on whether or not to give the permission for a...
June 28, 2007 at 5:08 am
Check what is the default database for the user and check if he has permission on that database. I have seen this error when a user has been assigned a...
June 28, 2007 at 4:54 am
Viewing 15 posts - 886 through 900 (of 1,335 total)