Viewing 15 posts - 151 through 165 (of 317 total)
If you must shrink the data files, do that first.
The index rebuilds and the concomitant latency will require a lot of log file space.
Make sure you communicate to the system...
October 18, 2013 at 10:02 am
Surely you meant:
SELECT DATEADD(d, -2, DATEADD(m, DATEDIFF(m, 0, GETDATE())+1, 0))
SELECT DATEADD(s, -1, DATEADD(m, DATEDIFF(m, 0, GETDATE())+1, 0))
returns: 2013-10-31 23:59:59.000
October 17, 2013 at 3:29 pm
Another possibility is temporary locking of the service account.
Perhaps a process or a user is occasionally trying to authenticate with the service account credentials and failing multiple times (incorrect pwd)...
October 11, 2013 at 12:13 pm
This could be a permission issue, where for some reason the service account's permission to write to the UNC path cannot be verified.
This could be caused by Active directory issues.
Another...
October 11, 2013 at 10:50 am
If you want to kill all connections to a single database, simply run:
USE [master]
GO
ALTER DATABASE <db_name> SET SINGLE_USER WITH ROLLBACK IMMEDIATE
GO
ALTER DATABASE <db_name> SET MULTI_USER
GO
September 5, 2013 at 9:22 am
This is why I use WMI calls against physical server names:
foreach($Volume in $(gwmi -computername $ServerName win32_volume | where-object{$_.DriveType -eq 3}))
...
August 30, 2013 at 10:10 am
Does this script handle mount points and C: drives on passive nodes in a cluster?
August 30, 2013 at 9:04 am
drop table <schema_name>.temptest
<schema_name> is what you find in sys.schemas where schema_id = 55.
the lesson here is ALWAYS use two part name (schema_name.object_name)
August 16, 2013 at 12:25 pm
select * from sys.objects
not sysobjects
August 16, 2013 at 11:32 am
The SQL Server process writes info on port bindings to the errorlog at startup.
August 16, 2013 at 11:21 am
What schema is the table in?
What is the output of select * from sys.objects where name = 'temptest'
August 16, 2013 at 11:14 am
What happens if you explicitly try to drop the object via T-SQL?
August 16, 2013 at 10:52 am
sp_configure 'allow updates', 1 is no longer supported, as you found out.
Have you run DBCC on the database in question?
August 16, 2013 at 10:51 am
is the volume consistent with actual modification of the table?
August 12, 2013 at 4:35 pm
Have you had the server guys check the power saving settings on the VM and the host.
See Brent Ozar's article on this issue:
http://www.brentozar.com/archive/2010/10/sql-server-on-powersaving-cpus-not-so-fast/
Also, I am curious why you...
August 9, 2013 at 12:28 pm
Viewing 15 posts - 151 through 165 (of 317 total)