Question : SAN,ISCSI and Virtualization


I will be implementing a high availability SAN cluster using ISCSI and ESX server.

Just wondering if this forum will be sufficient to get help with these systems or if you guy's recommend something else like

Answer : SAN,ISCSI and Virtualization

look at this
http://www.sommarskog.se/share_data.html

Also, if you can make it a function instead of a SP, you can return a table variable.

declare @tablename sysname
declare @colname sysname

select top 1 @tablename = tablename, @colname = ColumnName FROM dbo.TestTableList()
select @tablename, @colname
1:
2:
3:
4:
5:
6:
7:
8:
9:
10:
11:
12:
CREATE FUNCTION TestTableList ( 
) RETURNS @TableList TABLE (
  ID INT IDENTITY(1, 1),
  TableName SYSNAME,
  ColumnName SYSNAME
) AS BEGIN  
	INSERT INTO @TableList
	SELECT TABLE_NAME, COLUMN_NAME
	FROM INFORMATION_SCHEMA.COLUMNS
	
	RETURN 
END
Random Solutions  
 
programming4us programming4us