- Details
- Written by: Stanko Milosev
- Category: MS SQL
- Hits: 5565
SQL Server Browser has to be enabled so that other machines can access it.
- Details
- Written by: Stanko Milosev
- Category: MS SQL
- Hits: 5376
sp_password NULL,'new_password','sa' go
- Details
- Written by: Stanko Milosev
- Category: MS SQL
- Hits: 5296
USE AdventureWorks GO SELECT t.name AS table_name, SCHEMA_NAME(schema_id) AS schema_name, c.name AS column_name FROM sys.tables AS t INNER JOIN sys.columns c ON t.OBJECT_ID = c.OBJECT_ID WHERE c.name LIKE '%EmployeeID%' ORDER BY schema_name, table_name;From here
- Details
- Written by: Stanko Milosev
- Category: MS SQL
- Hits: 5620
EXEC sp_MSforeachtable @command1 = 'select * from ?'