Viewing 15 posts - 1 through 15 (of 183 total)
Crikey, this is a blast from the past. I wouldn't write it like that now!
November 12, 2019 at 2:18 pm
Thanks, Jeff. I will have another scout about for any other software and will try pausing/disabling Idera (or stopping its services on the server it runs on) to see if...
April 19, 2018 at 10:41 am
We are running Idera's SQL Diagnostic Manager and we also have some Red Gate software, but I was under the impression that Idera used extended events and if not it...
April 19, 2018 at 5:38 am
Thanks. Modified it to this and it worked. 🙂
SELECT CAST(COALESCE(Workstage,0) AS INT) AS JobNumber, FullDocID, TotalInvoiced
FROM (
SELECT CASE WHEN PCTX.Workstage LIKE '[0-9][0-9][0-9][0-9][0-9][0-9]' THEN PCTX.Workstage ELSE NULL END AS Workstage,...
October 31, 2008 at 4:03 am
Thanks. I thought that might work, but it didn't! I get exactly the same error. :crazy:
I know where the row is that causes the problem - it only...
October 28, 2008 at 5:11 am
Does anyone else have any thoughts on this? Could it be a bug or something in the nuances of how the query is constructed for execution?
October 27, 2008 at 3:52 am
steveb (10/23/2008)
SELECT * FROM vw_Job_Invoices_And_Credits WHERE JobNumber = 503875
You will need to add quotes to the Jobnumber
SELECT...
October 23, 2008 at 4:01 am
Update...
One of the ranges missing is objID between 1886 and 1893 (inclusive). I can select individual rows, and ranges of rows, as a subset, between 1886 and 1892 but...
June 2, 2008 at 10:28 am
Paul Nicklin (3/28/2008)
March 28, 2008 at 4:22 am
Paul Nicklin (3/28/2008)
The alternative is "special" values in your table "Not Employed".. apply that to every relation...
March 28, 2008 at 3:32 am
UPDATE [TableName]
SET [ColumnName] = '44' + RIGHT([ColumnName], LEN([ColumnName]) - 1)
Add...
WHERE [ColumnName] LIKE '0%'
...if not all entries begin with 0 and so you need to restrict to the ones that do,...
February 8, 2008 at 6:52 am
Does this only happen from your machine or does it happen from others or if you RDP to the box and use EM from there? Have you tried re-installing...
November 29, 2007 at 4:57 am
Sorted this - downloaded SQL Server 2000 evaluation edition from the Microsoft website and used that to install the client tools, which don't seem to be restricted.
September 13, 2007 at 8:39 am
Thanks Jeff... I'd never considered that approach. So simple it's brilliant.
April 11, 2007 at 6:31 am
Jeff,
Have you (or anyone!) come across the issue of linking to a date table on date when the date table has dates with times 00:00:00 and the dates you are...
April 11, 2007 at 2:58 am
Viewing 15 posts - 1 through 15 (of 183 total)