Viewing 15 posts - 436 through 450 (of 545 total)
Check this good discussion here:
http://www.sqlservercentral.com/Forums/Topic446308-360-1.aspx
June 25, 2008 at 12:46 pm
Try to GRANT VIEW SERVER STATE and VIEW DATABASE STATE Permissions
June 25, 2008 at 12:41 pm
Do you see any performance issue on the Box with counters at 0.
did the admin did a HOT INSTALL for the memory(ONLINE), or did he Shutdown the box and install...
June 25, 2008 at 12:36 pm
What authentication are you using, Windows/SQL or both
Also is the target Database in SINGLE user Mode or something.
There could me many things to consider.
June 25, 2008 at 9:31 am
Change the MSDE account in services to run as Administrator or under a ADMIN account.
June 25, 2008 at 9:13 am
Go with the first approach of changing the size of datatype, but avoid using MAX it is a BLOB type equivalent to text in earlier versions.
so use it carefully as...
June 25, 2008 at 8:57 am
Wilfred is correct.
But incase you are not worried about the REf int. and Just want to rest the count, Turn the identity off-> save the table--> turn the identity back...
June 25, 2008 at 8:25 am
check this out:
ODBC Connection Pooling Counters in Performance Monitor and ADO
June 25, 2008 at 8:22 am
well that is the reason the DBA's are on job.
Do you have the backup of the master database, from the server.
You should have regularly scripted out the logins for backup.
Well...
June 25, 2008 at 8:11 am
ok here goes, check if this is useful and change it to suite your needs or let me know:
declare @tabname_var varchar(25)
declare @sqlstm varchar(4000)
declare @dbname_var sysname
Declare dbnamecur cursor for
select name from...
June 25, 2008 at 8:01 am
Try the command outside the Database:
Use master
then the restore command.
June 25, 2008 at 7:55 am
Is your Job executing a SP of if it contains a T-sQL, you will have to build the Logic inside the Code and check for Time.
Or use can experiment with...
June 25, 2008 at 7:48 am
Check if a Excelsheet with same name is already present or a EXCEL file with same name.
try this:
SET ARITHABORT ON
SET ARITHIGNORE ON
June 25, 2008 at 7:43 am
Also check to verify those are not heap tables. (with indid=0)
the Heap tables cannot be de-fragmented, by the DBCC commands.
There are other ways to take care of the heap tables.
Select...
June 25, 2008 at 7:38 am
Are you sure this is not a Hardware Issue. Network Card, or need to check the disk I/O. Run a perfmon and look at values for DISK I/O and Also...
June 25, 2008 at 7:35 am
Viewing 15 posts - 436 through 450 (of 545 total)