Monday, July 21, 2008

config_options_2300.pdf

http://www.ncsa.uiuc.edu/~aloftus/FibreChannel/Qlogic/config_options_2300.pdf

Execution Throttle. This setting specifies the maximum number of commands
executing on any one port. When a port’s execution throttle is reached, no new
commands are executed until the current command finishes executing. The valid
options for this setting are 1–256. The default is 16.

 >4GByte Addressing. This option should be Enabled if the system has more
than 4 GB of memory available. The default is Disabled.

Tuesday, July 8, 2008

SQL Table Ownership Changes, Quick and Easy - Scott Forsyth's Blog

SQL Table Ownership Changes, Quick and Easy - Scott Forsyth's Blog: "DECLARE @old sysname, @new sysname, @sql varchar(1000)

SELECT
@old = 'oldOwner_CHANGE_THIS'
, @new = 'dbo'
, @sql = '
IF EXISTS (SELECT NULL FROM INFORMATION_SCHEMA.TABLES
WHERE
QUOTENAME(TABLE_SCHEMA)+''.''+QUOTENAME(TABLE_NAME) = ''?''
AND TABLE_SCHEMA = ''' + @old + '''
)
EXECUTE sp_changeobjectowner ''?'', ''' + @new + ''''

EXECUTE sp_MSforeachtable @sql"

Installing Oracle RAC 10g on Linux x86

Installing Oracle RAC 10g on Linux x86