0
votes
Use Float or Decimal for Accounting Application Dollar Amount?
Floating point numbers can only represent numbers that are a sum of negative multiples of the base - for binary floating point, of course, that's two.
There are only four decimal f …
1
vote
SQL Server restore a backup results in an error.
You can move backups forward in the SQL Server family, i.e. 2000 to 2005 or 2008, but not backward: you cannot restore a SQL Server 2005 backup on SQL Server 2000.
…
2
votes
Help with SQL server stack dump
See How It Works: Non-Yielding Resource Monitor on the PSS SQL Server En …
0
votes
The log file for database is full.
As soon as you take a full backup of the database, and the database is not using the Simple recovery model, SQL Server keeps a complete record of all transactions ever performed on the database. It …
1
vote
Troubleshooting Timeout SqlExceptions
SQL commands time out because the query you're using takes longer than that to execute. Execute it in Query Analyzer or Management Studio, with a representative amount of data in the database …
1
vote
How to retrieve stored procedure return values from a TableAdapter
The way to get the return value is to use a SqlParameter on the SqlCommand object which has its Direction set to ParameterDirection.ReturnValue. You should check the SelectCommand property of the T …
0
votes
mysqldump equivalent for SQL Server
If you can get DTS or Integration Services to connect to both servers, you can use the wizards to 'copy objects' from one server to another. 'Copy Database' requires that the two servers can authen …
1
vote
MS SQL Server 2005 - How to Auto Increment a field (not primary key)
If you just need to know that it changed, rather than specifically that this is a later version or how many changes there have been, consider using a rowversion column.
…
1
vote
1
vote
Releasing a database build consistently via isql
isql is obsolete. It isn't included in SQL Server 2005 or later, because it uses the DB-Library connections, which are also obsolete. For the reasons why, and the effects this has, see …
0
votes
How to do a SQL NOT NULL with a DateTime?
Just to rule out a possibility - it doesn't appear to have anything to do with the ANSI_NULLS option, because that controls comparing to NULL with the = and <> …
4
votes
Default port for SQL Server
The default, unnamed instance always gets port 1433 for TCP. UDP port 1434 is used by the SQL Browser service to allow named instances to be located. In SQL Server 2000 the first instance to be sta …
6
votes
What does “%%DatabaseEx” do in TSQL?
I think the best answer here is that it's not documented, and not supported, so don't rely on it. While it's interesting to know how SQL Server works internally, anything you do with that knowledge …
