Viewing 9 posts - 1 through 9 (of 9 total)
Yeah, there are some high-order bits in the file
They look like spaces but are not...
If you copy the code into notepad you will see ?what look like boxes instead of...
April 9, 2009 at 5:04 pm
The SQL Debugger that comes with ISQLW (Query Analyzer) uses DCOM. Becuase of this, there are a multitude of reasons the debugger "won't work". If a SQL Server...
October 7, 2003 at 2:53 pm
We have the following separate SQL Server environments:
·Development
·Integration
·Staging
·Production
We do not allow anyone other than our DBA’s to modify the structures within the database. We rarely allow developers...
September 4, 2003 at 4:25 pm
Of course you have to have the variable defined. The assumption is that on each server you would have a common environment variable defined that points to the backup...
June 12, 2003 at 11:31 am
quote:
I just need to create a windows system environment variable sql_backup_drive="X:\" for each SQL server and use it to determine the location...
June 11, 2003 at 5:35 pm
One option is to use a derived table containing the key + max(ship_date) and then delete from your table the rows that don't match as so:
DELETE Orders
--select *
FROM Orders t
LEFT...
June 4, 2003 at 2:02 pm
quote:
PC, you are missing out on a lot since dynamic sql used correctly can yield very good results. Although I did not...
June 4, 2003 at 1:36 pm
David asked for an example of the UDF that was referenced in my previous post. But before you review the code, David said "It sounds to me like all...
June 4, 2003 at 1:26 pm
Boy, you guys are brave!
I NEVER use dynamic SQL EVER in ANY Production system.
It does come in handy for 1-off utilities that I write and use myself.
For Queries...
June 3, 2003 at 5:48 pm
Viewing 9 posts - 1 through 9 (of 9 total)