Viewing 15 posts - 76 through 90 (of 347 total)
do you have analysis services on this server?
August 17, 2009 at 1:46 pm
you have to install SQL to a disk that on SAN storage that can be moved or "failed over" to any of the nodes. that way, if there is a...
August 12, 2009 at 3:04 pm
for the disk you want to install SQL on, be sure you can move the disk resource to all the nodes in your cluster using cluster administrator.
August 12, 2009 at 2:54 pm
try this...
declare @jobs table(name varchar(50),id int identity)
declare @JobName varchar(50)
declare @max-2 int
declare @count int
declare @sql varchar(5000)
insert into @jobs(name)
--replace next line w/ subquery
select jobname from blah blah blah
select @count = 1,@max= max(id)...
August 12, 2009 at 2:21 pm
Yes, you could either do a single node cluster, but you would not have failover capabilities.
http://technet.microsoft.com/en-us/magazine/2007.03.sqlclusters.aspx
or you could use virtual servers to do more than one node.
A lot of...
August 12, 2009 at 2:14 pm
I have .net 3.5 + sp1 and SQLDigger works fine, although it's possible that I installed it before I had that framework installed. I just confirmed that SQLdigger is functioning...
August 6, 2009 at 3:18 pm
Jobs are also a good place to start, especially if the growth consistently happens at the same time of day. run select * from msdb.dbo.sysjobhistory to see if there was...
August 6, 2009 at 3:08 pm
I would run sp_who2 while tempdb is growing and that will return all the active processes. if you want to see what statements are being run, you will need to...
August 6, 2009 at 3:05 pm
I use a free utility called SQLDigger that allows you to search sprocs for a string. You can do a search for the username and it should find any sprocs...
August 6, 2009 at 2:31 pm
if it's possible, I would look at what is running on the server while the growth happens and you will be able to zero in on the true cause.
August 6, 2009 at 10:31 am
temp tables and work tables for sorting also have an affect on tempdb, so if you are using a lot of temp tables, table variables, or doing a lot of...
August 6, 2009 at 10:30 am
it's easy to implement. look in books online (help) under the topic "jobs [SQL Server Agent]"
August 6, 2009 at 10:07 am
it sounds like you may have an execute as username in a stored procedure or function, and that is why it will not allow you to drop the user.
August 6, 2009 at 9:12 am
it means you can only have 2 physical nodes. You can run as many instances as you want on it, but you can only have 2 physical machines in the...
August 4, 2009 at 10:09 am
I beleive what it is actually complaining about is that it wants you to use the original column name in the order by and not the alias that is set...
July 31, 2009 at 3:15 pm
Viewing 15 posts - 76 through 90 (of 347 total)