milosev.com
  • Home
    • List all categories
    • Sitemap
  • Downloads
    • WebSphere
    • Hitachi902
    • Hospital
    • Kryptonite
    • OCR
    • APK
  • About me
    • Gallery
      • Italy2022
      • Côte d'Azur 2024
    • Curriculum vitae
      • Resume
      • Lebenslauf
    • Social networks
      • Facebook
      • Twitter
      • LinkedIn
      • Xing
      • GitHub
      • Google Maps
      • Sports tracker
    • Adventures planning
  1. You are here:  
  2. Home

Access SQL Server from other machines

Details
Written by: Stanko Milosev
Category: MS SQL
Published: 12 November 2012
Last Updated: 26 December 2012
Hits: 5565

SQL Server Browser has to be enabled so that other machines can access it.

How to change sa password.

Details
Written by: Stanko Milosev
Category: MS SQL
Published: 12 November 2012
Last Updated: 30 November -0001
Hits: 5376

sp_password NULL,'new_password','sa' go

Query to Find Column From All Tables of Database

Details
Written by: Stanko Milosev
Category: MS SQL
Published: 28 October 2012
Last Updated: 30 November -0001
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

Select all from all tables in DB

Details
Written by: Stanko Milosev
Category: MS SQL
Published: 13 September 2012
Last Updated: 13 September 2012
Hits: 5620
 EXEC sp_MSforeachtable @command1 = 'select * from ?'
  1. Invoke or BeginInvoke cannot be called on a control until the window handle has been created..
  2. Data into fields
  3. Why is SQL Server 2008 blocking SELECT?
  4. Data source name not found and no default driver specified

Subcategories

C#

Azure

ASP.NET

JavaScript

Software Development Philosophy

MS SQL

IBM WebSphere MQ

MySQL

Joomla

Delphi

PHP

Windows

Life

Lazarus

Downloads

Android

CSS

Chrome

HTML

Linux

Eclipse

Page 79 of 164

  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
  • 81
  • 82
  • 83