Viewing 15 posts - 466 through 480 (of 560 total)
Perry Whittle (11/27/2012)
I now use Windows storage server to create iSCSI targets that are exposed to the cluster nodes, but if you're happy using FreeNAS thats fine.
And you say...
November 27, 2012 at 3:15 pm
Disregard previous post! 🙂 ...
I am actually deploying a Virtual SQL 2012 Cluster following this guide. Here's the quick software list:
-VMware Workstation 9.0
-freeNAS 8.2
-Win 2008 R2 evaluation ed.
So far so...
November 27, 2012 at 12:09 pm
Thanks for sharing.
Perry,
Do you think I can use this as a guide for a SQL 2012 Cluster? Planning to do...
November 27, 2012 at 7:23 am
Thanks for sharing that piece of code. I'll take a look
Now, not trying to be a "pain in the butt" but how a cursor can be bad on...
November 21, 2012 at 11:11 am
anthony.green (11/20/2012)
I will attach the copy of the script I use tomorrow which utilises the above script and inserts to a...
November 20, 2012 at 1:46 pm
anthony.green (11/20/2012)
Just watch out for using undocumented features like sp_msforeachdb if you have special characters in your db name it can cause problems
Agree!
But this is for my own reports, nothing...
November 20, 2012 at 12:50 pm
Wow! Nice thread ... 😛 .. just reading was fun!
I've seen both sides of the coin (IO and page contention), when I was working for HP. So I know 1st...
November 20, 2012 at 12:15 pm
Here's the full and final T-SQL code...
--COLLECTING INFORMATION
CREATE TABLE #TempDBSize(
[name] [varchar](100) NOT NULL,
[database_id] [int] NOT NULL,
[Size] [decimal](10, 2) NOT NULL,
[UsedSpace] [decimal](10, 2) NOT NULL
)
EXECUTE master.sys.sp_MSforeachdb
'
USE [?];
INSERT INTO ...
November 20, 2012 at 11:43 am
Use COLLATION clause in one of the joins .. 😉
If you have a database with a different collation like me, you'll get that error.
November 19, 2012 at 9:38 pm
It looks that what I was needing, was a lunch break ... 🙂 ...
Got the solution myself. Posting in case someone else is looking for the same ...
SELECTSD.name,
MF.database_id,
CONVERT(decimal(10,2),(DF.size/128.0))...
November 19, 2012 at 11:28 am
Thanks Perry,
I'll take a look today ...but regardless , with a max of two failover instances on a two node clusters , would you recommend mount points? Besides gaining more...
November 14, 2012 at 5:35 am
alanspeckman (11/13/2012)
November 13, 2012 at 11:40 am
SQL 2008 Cluster setup needs to be run twice (on a two node cluster) So you will end with two binaries install, one per node. This is different from SQL...
November 13, 2012 at 10:36 am
GilaMonster (11/12/2012)
sql-lover (11/12/2012)
GilaMonster (11/12/2012)
Chapter 3: http://www.simple-talk.com/books/sql-books/troubleshooting-sql-server-a-guide-for-the-accidental-dba/Thanks for reply.
Do you mind be more specific?
Sorry, chapter 4.
Jonathan details his algorithm for calculating the max server memory for any value of total installed...
November 12, 2012 at 1:44 pm
GilaMonster (11/12/2012)
Chapter 3: http://www.simple-talk.com/books/sql-books/troubleshooting-sql-server-a-guide-for-the-accidental-dba/
Thanks for reply.
Do you mind be more specific?
I actually have the paper book version at home. Re-download the free PDF version after your post. Chapter 3 is...
November 12, 2012 at 11:56 am
Viewing 15 posts - 466 through 480 (of 560 total)