top of page

Find Hardware Manufacturer for your SQL Server

Writer: Kunal RanpuraKunal Ranpura

-- Get System Manufacturer and model number from

-- SQL Server Error log. This query might take a few seconds

-- if you have not recycled your error log recently

EXEC xp_readerrorlog 0,1,"Manufacturer";

Recent Posts

See All

SQL Server Profiler Trace

--Import multiple trace file in sql Table. --All the rollover files will be automatically imported --provide number tracefile to capture...

Find All Primary Key in SQL Server

select schema_name(tab.schema_id) as [schema_name], pk.[name] as pk_name, substring(column_names, 1, len(column_names)-1) as [columns],...

Comments


bottom of page