Posts tagged Server

Endeca – “Unknown Host Exception using eaccmd”

0
Earlier today, one of the database servers that I manage wasn’t responding. This turned out to be due to a Windows Update that caused the server to restart, but the server didn’t come back properly. We restarted the server again and it seemed OK. Because this happened in the middle of an Endeca [...]

Generate a list of tables for all databases on a server

0
The following Transact-SQL can be used to generate a list of tables for all the databases on a server: USE master GO DECLARE @dbID INT DECLARE @name VARCHAR(500) DECLARE @sql VARCHAR(1000)   CREATE TABLE #databasetables ( DatabaseID INT,   DatabaseName VARCHAR(100),   TableID INT,   TableName [...]
Go to Top