Viewing 15 posts - 151 through 165 (of 220 total)
Question is more general and used for any column.
It is not for me but for a my collegue...He said that he needs to use position but not column name or...
June 29, 2006 at 1:05 am
the first col is with identity:
select * from table WHERE $IDENTITY = '28'
but i get the error..
Any help?
June 28, 2006 at 8:04 am
OK,
I have resolved the problem, I forgot to add OUTPUT after the OutPutParameters.
Thank
June 8, 2006 at 3:01 am
Thank to everybody,
I'll try your suggestion ...
thank
June 7, 2006 at 2:21 pm
I have re-written the statement,
declare @OutputParameter varchar(100) ,
@OutputParameter2 varchar(100) ,
@StoreProc varchar(128) ,
@StoreProcCall nvarchar(128) ,
@rc int
select @StoreProcCall = 'exec @rError=' + @StoreProc + '...
June 7, 2006 at 10:03 am
Making some tests I have partially solved the problem with locking hints, now the performance get better.
thank
April 1, 2006 at 6:22 am
We have same opinion. I think this is a lock problem and memory, in fact when sql server hangs on a table; write/read on disk is null, it means that...
March 31, 2006 at 2:27 pm
Thank to everybody for your useful suggestion.
I'll try
IF NOT EXISTS (select procedure entry here)
EXEC('CREATE PROCEDURE ....') ............................
thank
March 9, 2006 at 3:32 pm
Thank... here another solution (for everybody) , but yours one is faster....
DECLARE @sd INT
SET @sd = 5400
SELECT [HH:MM:SS] =
CASE WHEN @sd/3600<10 THEN '0' ELSE '' END
...
March 9, 2006 at 10:14 am
I'm thinking that you are right.
thank a lot, I will investigate in this way...
February 10, 2006 at 3:36 pm
Sorry,
the error is:
Error = [Microsoft][ODBC SQL Server Driver][SQL Server]Login failed for user 'domain\machine'.
the problem is that: I log on to windows as domain\user and log on to SQLserver with windows...
February 10, 2006 at 8:29 am
Write at the beginning and at the end of store proc: print getdate().
February 10, 2006 at 7:35 am
Viewing 15 posts - 151 through 165 (of 220 total)