Archive for category: SQL Server

FAQ: How to connect to SQL Express from

19 December, 2004 (17:22) | SQL Server | By: Thomas

This could come in handy.
read more

SQL Server Express and VB6 (by yag)

5 December, 2004 (04:44) | SQL Server | By: Thomas

I skipped over the details when I read Scotts post on 3Leaf. Here was a comment from another blogger that made me sit up and take notice:
“…My only response to this is “yup!” . SQL Server Express is one of the projects I’ve most enjoyed working on in this release. The ability to have a [...]

VERITAS -Application Service Management

7 November, 2004 (18:00) | General, SQL Server | By: Thomas

When you need to know which parts of your app to tweak in order to make it perform better, this is the tool to get. We briefly used Veritas InDepth to analyze database and proc performance and were very impressed. Its especially useful in determining which procs needed the most attention. Running the tool on [...]

Bob Beauchemin’s Blog – Early XQuery schema validation

3 November, 2004 (15:56) | SQL Server | By: Thomas

I’m still not the biggest fan of xml. In my mind its a great replacement for EDI but thats about it. Yes I know there is sooo much more it can do. But I prefer good old objects to angle brackets. That said, here is a small note from Bob Beauchemin regarding XQuery validation of [...]

Early Adopter: SQL Express: The Little Engine that Could.

31 October, 2004 (16:38) | General, SQL Server | By: Thomas

According to Early & Adopter You can actually attach a SQL Server 2005 database to VB 6. It looks like this:
Private Sub Form_Load()
Dim cn As ADODB.Connection
Set cn = New Connection
cn.ConnectionString = “Provider=SQLNCLI.1;Integrated Security=SSPI;Persist Security Info=False;AttachDBFileName=” & App.Path & “\sales.mdf;Data Source=server1\sqlexpress”
cn.Open
Dim rs As Recordset
Set rs = New Recordset
rs.Open “Select * from monthlysales”, cn
Set MSHFlexGrid1.DataSource = rs
End [...]

October CTP release of Sql Server 2005 Installation issues and resolution

19 October, 2004 (01:49) | SQL Server | By: Thomas

Via Mike Gunderloy: Some folks have reported problems with the default installation of SQL Server 2005’s October release. Here are some suggestions noted by Wally.
Read them

Query Analyzer Tips and Tricks

7 October, 2004 (15:48) | SQL Server | By: Thomas

Mike Gunderloy: If you’ve worked with Microsoft SQL Server at all, you’ve run across SQL Query Analyzer. Of course, this tool is essential for running ad hoc queries and executing SQL statements. But have you ever taken the time to really investigate its capabilities? The SQL Server developers built a lot of functionality into Query [...]

How to Perform Microsoft SQL Server Database Log Shipping

2 October, 2004 (07:31) | SQL Server | By: Thomas

In a perfect world we wouldn’t need standby servers for our SQL Servers. Our hardware would never fail, NT Server 4.0 or Windows 2000 would never blue screen, SQL Server would never stop running, and our applications would never balk.
In a partially perfect work, we could afford very expensive clustered SQL Servers that automatically failover [...]

Download The Best of SQLServerCentral.Com Vol. 1

30 September, 2004 (15:33) | SQL Server | By: Thomas

Red Gate Software has a free e-book.
“… This book is full of “essays and ideas from the SQL Server community,” and is a valuable resource for anyone working with SQL Server…”
Download here

Download details: RML.EXESupport Tools Available For Stress Testing & Performance Analysis

29 September, 2004 (05:38) | SQL Server | By: Thomas

Read80Trace is a command line utility for processing trace files generated by SQL Server 2000. As output, it generates RML files and/or a database populated with normalized data that can be useful for analyzing the performance of the system. Read80Trace requires that the destination database also run SQL Server 2000 or later.
OSTRESS is a multithreaded [...]