Viewing 15 posts - 211 through 225 (of 1,086 total)
Sorry, but that did not fix it.
I was planning on making the Course_Level a selection from the data rather than a "hardcode"... Hence, my idea of flexibility. May not...
I wasn't born stupid - I had to study.
June 16, 2006 at 1:15 pm
I was trying an approach that I hoped would be more flexible since I am assuming this is test data. I ran into an odd problem I cannot figure out. ...
I wasn't born stupid - I had to study.
June 16, 2006 at 11:54 am
I have no idea what you are saying, but I REALLY like how you put it!!! ![]()
![]()
I wasn't born stupid - I had to study.
June 8, 2006 at 11:54 am
I must have worked at those places as well!!! ![]()
![]()
I wasn't born stupid - I had to study.
June 8, 2006 at 11:48 am
I think it was supposed to be where the dates where not equal. That is why I questioned the two tables not having shared EID's.
I wasn't born stupid - I had to study.
June 8, 2006 at 11:44 am
That's an especially good solution if you are not starting from one and ending at a specific number.
The other side, (I have not seen Remi for a while) you...
I wasn't born stupid - I had to study.
June 8, 2006 at 11:42 am
First off, you are not showing an EID of 4 in TableB for your join.
Try this:
DECLARE @TableA TABLE( EID integer, [Date] smalldatetime, Remark varchar(10) NULL)
INSERT INTO @TableA...
I wasn't born stupid - I had to study.
June 8, 2006 at 10:21 am
DECLARE @Numbers TABLE( [Number] integer)
INSERT INTO @Numbers
SELECT 1 UNION ALL
SELECT 2 UNION ALL
SELECT 3 UNION ALL
SELECT 4 UNION ALL
SELECT 5 UNION ALL
SELECT 6...
I wasn't born stupid - I had to study.
June 8, 2006 at 9:54 am
Yip! Major downside if Timeout is an issue. But might be a good test to see if the dates are having trouble... ![]()
I wasn't born stupid - I had to study.
June 8, 2006 at 7:39 am
You may want to try: CONVERT( varchar(10), LQ.Date_IN, 101) BETWEEN @DateFr AND @DateTo
Instead of: LQ.Date_IN BETWEEN @DateFr AND @DateTo
I wasn't born stupid - I had to study.
June 7, 2006 at 3:49 pm
I've not used XML in an SP, so I do not know what this is doing:
SELECT '<XMLData>
<Decisions>
<Decision char="N" desc="Not Verified" />
<Decision char="R" desc="Rejected" />
<Decision char="V" desc="Verified"...
I wasn't born stupid - I had to study.
June 7, 2006 at 12:16 pm
This will not necessarily help performance, but try the ROUND function. Look it up in BOL and you will see how the third parameter can be used...
We too have...
I wasn't born stupid - I had to study.
May 31, 2006 at 10:39 am
I think you have a bit of a problem recognizing that you MUST have a WHERE clause in an UPDATE, else you update an entire table. What you are doing in...
I wasn't born stupid - I had to study.
May 30, 2006 at 10:29 am
A quick fix might be to see where your "Value" match may be slowing down. I would suggest using alzdba's query and commenting out sections to see where the slow...
I wasn't born stupid - I had to study.
May 4, 2006 at 10:44 am
I would like to keep this alive for a bit longer as I have replaced yet another cursor in the same fashion that Eddie Wuerch suggested, but I still get...
I wasn't born stupid - I had to study.
April 27, 2006 at 3:36 pm
Viewing 15 posts - 211 through 225 (of 1,086 total)