Viewing 15 posts - 61 through 75 (of 93 total)
Fortunately there are no 2 word countries in my data . As I mentioned though, the Replace function doesn't seem to have any...
September 23, 2005 at 1:39 pm
Not sure about the percentages calculation, but in profiler you could set up 3 traces, you could specify in the filters tab in one TextData Like Select , another like...
September 23, 2005 at 7:03 am
Hi RGR,
Yes I've removed the Where criteria, I'll check some of the other items you mention
Cheers
September 23, 2005 at 6:45 am
Hmmm,
I'm wondering whether it's down to the fact that I'm using SQL 7.0 in 6.5 compatibility mode or mayber it's a database setting somewhere
Select replace(country,' ','') AS SPACEFIELD, replace(country,' ','Z')...
September 23, 2005 at 6:04 am
No I'm afraid that didn't work RGR, If I issue
REPLACE(address,' ','Z')
I get FZRZAZNZCZE, so It is recognizing the ' ' as a space in the first parameter
It would seem that...
September 23, 2005 at 5:19 am
At the risk of repeating myself
SELECT A.Store_id, A.Store, A.Region, A.[% Chg Cap],A.[% Chg Rad]
FROM Performance_Variance A
WHERE A.[% chg RAD]< 0
AND...
September 22, 2005 at 9:26 am
I had no idea that you could call a DTS package like that, thanks Mike
September 20, 2005 at 9:26 am
Hi Luke,
How about
SELECT A.Store_id, A.Store, A.Region, A.[% Chg Cap],A.[% Chg Rad]
FROM Performance_Variance A
WHERE A.[% chg RAD]< 0
AND A.Month_end = '2005-09-14 23:59:59'
AND A.Level = 'store'
AND A.store_id IN
(SELECT...
September 20, 2005 at 3:06 am
Nope spoke too soon, still getting the same Error
September 15, 2005 at 3:53 am
Are these id's identity columns? If so you could use @@identity which stores the last identity value inserted
Declare @lastid as integer
Set @lastid = @@identity
September 14, 2005 at 5:00 am
That looks promising Noel, I'll give it a bash and let you know how it goes
August 2, 2005 at 7:45 am
Hi Yelena
The registry key is HKLM\Software\Microsoft\Microsoft SQL Server\<instance name>\MSSQLServer\Parameters on my installation. But the server names and instance names and drive mappings should remain the same.
One further question. Our Tempdb...
July 21, 2005 at 7:46 am
Thanks James, I had suspected as much - A shame really 😉
July 19, 2005 at 12:38 pm
Viewing 15 posts - 61 through 75 (of 93 total)