Viewing 15 posts - 406 through 420 (of 583 total)
This is a log shot but try running this to see if any system objects are taking up the space. system objects do not show up on the Disk Usage...
March 2, 2011 at 1:22 pm
One reason to do this is to have tempdb in different compatibility. If you have a user database in 2005 compatibility on a 2008 instance any code using tempdb will...
March 2, 2011 at 1:00 pm
I think the issue is, They need to parse out table name even if it is not aliased. If that is not the case please provide expected results.
Declare @sqlQuery...
February 28, 2011 at 2:18 pm
You could try creating a central management server(http://msdn.microsoft.com/en-us/library/bb934126.aspx) an then use sp_msforeachdb 'USE [?]; EXEC dbo.sp_changedbowner @loginame = ''sa'', @map = false'
February 9, 2011 at 11:44 am
try using this example to achieve you requirements
declare @datefrom datetime,
@dateto datetime
set @datefrom = '05/30/2007'
set @dateto = '06/04/2007'
select DATEDIFF(dd,@datefrom,@dateto)
Here is link describing the datediff function
http://msdn.microsoft.com/en-us/library/ms189794.aspx
also, please read the link in my...
February 9, 2011 at 10:29 am
Are you referring to a SSIS package? If so, I think the the package ID is part of the application name. If it is you run a trace on updates...
January 4, 2011 at 12:57 pm
I just checked my local instance of SQL Server Express 2008 R2 and it looks like only Shared Memory Protocol is enabled by default (I dont ever remember changing it)....
December 16, 2010 at 12:33 pm
Did you try just typing in the instance name instead of selecting from the list?
December 16, 2010 at 11:17 am
I believe SQLHeartbeat is what you are looking for
December 14, 2010 at 2:30 pm
I would look at SSIS. I am by no mean a SSIS guru (novice more like it) but you should be able to use you file as a source with...
December 8, 2010 at 3:21 pm
a 146 Gig on a RAID 1 --> for OS and
another 146 Gig on another RAID 1 --> for the DB
This would be a better setup although this would require...
December 8, 2010 at 2:35 pm
Splitting a single drive to multiple partitions does not help the performance of a database. What you would want is to have a separate physical drive(s). More spindles = better...
December 6, 2010 at 1:42 pm
One way to accomplish this would be to create a linked server for all servers you would like this SP to run on then create a cursor that will loop...
December 6, 2010 at 11:07 am
If it is a partitioned table it can be in multiple File groups, each partition can be in a different file group. I am unsure what info SSMS would give...
December 3, 2010 at 12:45 pm
You have all the pieces you need in the script provided by Ki Chiang. Instead of individual columns in the select, add them together as a string to create your...
December 1, 2010 at 8:06 am
Viewing 15 posts - 406 through 420 (of 583 total)