Viewing 15 posts - 1 through 15 (of 218 total)
Because you can also check that SSAS and SQL are not on the same node, or two instances of SSAS, etc...
November 13, 2013 at 9:56 am
sej2008 (11/10/2013)
do you require to apply service pack on windows 7 for installing sql 2012 enterprize edition.what about sql 2008 and sql 2008 r2 on windows 7?
A SQL SP or...
November 10, 2013 at 3:23 am
It's falls under MSDN, which allows us unlimited editions of ent/standard on non-production servers.
November 8, 2013 at 5:19 am
I use for a dev server Win7/SQL2012 Enterprise and Win7/SQL2008R2 with no problems
November 8, 2013 at 4:51 am
I have a script that I run based on the sysprocesses table that kill all SPID's in a given database.
November 7, 2013 at 4:40 am
This query will get you the information from the DMV (Dynamic Management View)
select db_name(database_id) as [Database Name], count(*) * 8/1024.0 as [Cached Size (MB)]
from sys.dm_os_buffer_descriptors
where database_id > 4 -- system...
November 7, 2013 at 12:21 am
Set MAXDOP to the total number of cores you have (don't count hyperthreading). If you have 24 cores (4 CPU/Sockets times 6 cores), then set MAXDOP to 24.
November 6, 2013 at 11:51 pm
Kris-155042 (11/6/2013)
I have a 2008 R2 64b server with 4 instances on it. One is using ALL the RAM and the other instances are using less than 100Mb and the...
November 6, 2013 at 11:48 pm
Sreejith! (8/19/2013)
But the files(txt,mdf,doc,excel,zip) in the 'test' directory doesn't have proper time stamp, which help us to determine whether these files has been placed in the folder for more...
August 19, 2013 at 7:30 am
Alan.B (8/8/2013)
GregoryF (8/8/2013)
August 8, 2013 at 11:24 am
I use forfiles (google it for the reference on how to use) call from xp_cmdshell. It alows be to delete files older than n days, and you can pass...
August 8, 2013 at 10:57 am
Why not just script out all the jobs? It's easier than restoring msdb...
July 30, 2013 at 6:26 am
Are you planning on just restoring msdb (simple) or msdb and master (so complicated I have not done it in 10 years)?
July 30, 2013 at 6:02 am
Whilst I did not have any set datefirst statements in my SP, adding it got the SP to work.
Funny thing, the SP had been working for six weeks on 25+...
June 20, 2013 at 9:33 am
Nice new feature, too bad it does not work on 2008/R2 servers. But as we migrate more servers to 2012 I sure we'll use it more.
April 1, 2013 at 5:21 am
Viewing 15 posts - 1 through 15 (of 218 total)