Viewing 15 posts - 1 through 15 (of 36 total)
Thank you all for your answers,
I managed to contact the ex-DBA and got a bit of rational for this trace. The app that uses the DB is an...
February 8, 2017 at 1:49 am
Yes, I am aware of the gaps that may present themselves when using identity columns. In this case though, RowNo is a serial number kept in another table that...
February 27, 2014 at 2:54 pm
Jeff thank you for the advice and the solution. Using John's suggestion I managed to come up with the code that works doing a little brainwork myself.
I will keep in...
February 27, 2014 at 9:07 am
thank you very much...
with a minor change to get the order I wanted, it worked perfectly:
SELECT a.keyDate AS DateFrom
,ISNULL(b.keyDate ,GETDATE()) AS DateTo
...
February 27, 2014 at 8:59 am
This was a great post and it really connects with the frustration A LOT of people have felt when trying to deal with such issues on corporate structures.
What is reallly...
January 15, 2010 at 1:08 am
how about this:
declare @FinalString nvarchar(250)
SET @FinalString=''
SELECT @FinalString = COALESCE(@FinalString + ', ', '') + (CAST([name] AS nvarchar(50)))
FROM Fruit
order by [name]
SELECT REPLACE(@FinalString,'''',' ')
October 14, 2009 at 5:15 am
I had the same problem sometime ago. Eventually we created a VPN so things were easy after that.
Anyway there is no reason that you shouldn't be able to to it,...
September 29, 2009 at 12:57 am
Access is notorious for its problems working with a lot of users over LANs (I understand though that you will be using it as a front end only).
I have developed...
September 25, 2009 at 1:02 am
🙁
the sproc runs in a transaction so trying to save start/end time + other information to a log table in the DB gets rolledback when the query times out......
remember...
September 21, 2009 at 9:54 am
I understand that the timeout thing is a client issue because the client decides when to timeout,
but I still need to find the T-sql part that actually takes that...
September 21, 2009 at 9:08 am
A follow up for the record gentlemen:
as of a couple of days the stored procedure runs in production with minor modifications and no problems whatsoever.
Thank you again for your help!
September 21, 2009 at 4:41 am
Although using the 3 part "Quirky Update" method that Hans' good code has in it certainly helps prevent deadlocks, the code that calls the procedure should never include the procedure...
September 16, 2009 at 12:27 pm
...I am speechless 🙂
thanks for your input, but how does this handle concurrency? I need to have sequential numbering are you sure this will leave no blanks in the numbering?
what...
September 16, 2009 at 10:55 am
Thanx everyone,
that is exactly what I did (select into.....)
The identity columns are preserved on the same instance...
I have never used SSIS - normally for tasks like those I feel...
September 12, 2009 at 2:33 am
we faced a similar situation some time ago although not even close to that amount of users and sites. we had to have a central server and 5 remote locations...
May 27, 2009 at 10:27 am
Viewing 15 posts - 1 through 15 (of 36 total)