:huh: OPEN TABLE database
creo que es un software que permite tener una vista actulizada de las tablas
edit: fuente :http://www.mysqlperformanceblog.com/2008/12/14/show-open-tables-what-is-in-your-table-cache/
OPEN (Transact-SQL) me parece que solo esta disponible en SQL Server 2008 R2.
Abre un cursor del servidor Transact-SQL y lo llena ejecutando la instrucción Transact-SQL especificada
en la instrucción DECLARE CURSOR o SET cursor_variable.
Ejemplo:
DECLARE Employee_Cursor CURSOR FOR
SELECT LastName, FirstName
FROM AdventureWorks2008R2.HumanResources.vEmployee
WHERE LastName like 'B%';
OPEN Employee_Cursor;
FETCH NEXT FROM Employee_Cursor;
WHILE @@FETCH_STATUS = 0
BEGIN
FETCH NEXT FROM Employee_Cursor
END;
CLOSE Employee_Cursor;
DEALLOCATE Employee_Cursor;
Aquí (http://msdn.microsoft.com/es-es/library/ms190500.aspx)tienes el enlace en la MSDN donde tienes toda la información acerca OPEN.