Viewing 15 posts - 1,996 through 2,010 (of 7,429 total)
Well if a spid is stuck directly related to the SP your option is to kill or restart (you could also throw the users out of the DB with single...
April 4, 2004 at 8:40 am
RIght off I don't see anything specific. However try removing the return at the end as it isn't needed for your case and see if maybe that is someho related???...
April 2, 2004 at 7:41 pm
Only thing i can think of is ROWLOCK but that won't keep people out of the table in addition to the row, just the row.
A range of table-level locking...
April 2, 2004 at 7:36 pm
Sorry apparently they track requests to the KB section. Follow that link and in the search box type
crystal reports unicode characters
and press go then press to search with omitted...
April 2, 2004 at 8:39 am
Here try this to pull from the KB articles for Crystal related to your question.
April 2, 2004 at 7:09 am
BULK INSERT, bcp and other bulk transactiona like that.
April 2, 2004 at 4:48 am
In times like that you should use Profiler to watch what happens with the cache and the plan for the IIS calls and your own. I the logic is wrapped...
April 2, 2004 at 4:47 am
Some traces are directed to the SQL Server Logs. I do believe 1794 may be one of those.
April 2, 2004 at 4:35 am
In the previous code change this
IsNull(S1.CancelDate,'19000101') < S2.SaleDate
To This
S1.CancelDate < S2.SaleDate
And try again.
April 1, 2004 at 7:27 am
If the box was set up as default and you didn't change any security logins then anyone in the NT admin group on that server can get in the SQL...
April 1, 2004 at 4:42 am
From what I recall SUBST only is visible to the logged in user. SQL doesn't run under the same user context as the logged in user so SQL depednign on...
March 31, 2004 at 6:06 pm
If using SQL 200 then simple create a USer Defined Function to lookup the previous value like so.
CREATE FUNCTION dbo.PreviousLot (@Cust_ID int, @Cur_Lot int)
RETURNS int
AS
BEGIN
DECLARE @chkLot int,
@chkDate datetime
SELECT
TOP 1...
March 31, 2004 at 4:01 pm
Personally I prefer to use multipls SPs in groups with chekcing logic in first, update in another and insert in yet another so I get an execution plan for each...
March 31, 2004 at 3:44 pm
I have used this before on simpler issues but this is how you do what you are asking.
Simple do like so.
SELECT
[id],
MAX(CASE ques_name WHEN 'date' THEN ques_val ELSE null END) AS...
March 31, 2004 at 1:47 pm
Viewing 15 posts - 1,996 through 2,010 (of 7,429 total)