Viewing 15 posts - 166 through 180 (of 298 total)
It might be able to 'see it' as a configuration option but I don't think it can actually allocate it.
I use Enterprise on a 4GB box with the /3GB switch...
March 29, 2006 at 4:29 am
Hi, Troubleshooting performance problems are always difficult - even when you are in front of the server. Can you give us some more background? In particular:
Has this only just started?...
March 29, 2006 at 3:32 am
I would go down the route of updating all columns. I don't think the overhead will be that great (unless it's a very wide table with only a few columns...
March 29, 2006 at 3:16 am
Hi all - thanks for the help.
I eventually bit the bullet and went down the DTS route.
Vasc - Thank for the info on changes to the driver - it looks...
March 29, 2006 at 3:11 am
An alternative method is to maintain a logically deleted flag on the record and use an INSTEAD OF trigger to flag the record as deleted. You can then use this...
March 27, 2006 at 8:14 am
Im not sure exactly what you are wanting to do - for sending mail I usually use xp_sendmail or the E-mail task in DTS.
March 27, 2006 at 8:09 am
In DTS you can set up mutiple source and destination pairs.
March 27, 2006 at 7:22 am
You coluld just do a count(*) and return that or eat the output of the select into a #temptable (or table variable) then drop it. Not sure why yuo would...
March 24, 2006 at 10:01 am
You could put a RETURN before your ErrorHandler: Alternately always assign @@ERROR to a local variable - for Example @ReturnValue.
Then in ErrorHandler you can test @ReturnValue
.
March 24, 2006 at 9:46 am
I came up with this ... but I'm sure there is a better way. It's not recursive so only 'nests' to one level.
Might get some more interest!
CREATE...
March 24, 2006 at 9:10 am
Try APP_NAME() it should return the application name _if_ the application has set it.
March 24, 2006 at 5:03 am
Can you select from the table - if a select times out it is likely there is a lock or openn transaction on there table.
March 24, 2006 at 4:58 am
Something like this
DECLARE @i INT
SET @i = 1
WHILE @i < 20
BEGIN
SELECT @i,
CASE @i % 2
WHEN 0 THEN 'Even'
ELSE 'Odd'
END AS OddOrEven
SET @i = @i+1
END
March 23, 2006 at 9:03 am
Q1 only. I'm guessing it's because [ is part of the patern definition in the LIKE predicate so
select * from #unprintable where CharOld not like '[[]'
does not find...
March 23, 2006 at 8:04 am
The one from Sergiy does not work (sorry) but I understand why. I'ts actually where I started. The one from rsharma does work - now I just need to understand...
March 17, 2006 at 3:39 am
Viewing 15 posts - 166 through 180 (of 298 total)