Viewing 15 posts - 3,721 through 3,735 (of 5,504 total)
gregory.anderson (4/21/2010)
Edit: It's getting wierder (is that a word),...
April 21, 2010 at 11:47 am
Since there is no error message posted I'd assume you need to set the collation for the MI alias used to compare against your subquery too:
and(RTRIM(LTRIM(MI.CLNT_MATT_CODE)) COLLATE SQL_Latin1_General_CP1_CI_AI NOT IN
(SELECT...
April 20, 2010 at 3:30 pm
gregory.anderson (4/20/2010)
Quick question, can you reuse CTE's in 2 separate statements inside a procedure?
Nope. You'd have to use an intermediate table to hold the results (either SELECT INTO or INSERT...
April 20, 2010 at 1:59 pm
Yes, you'd need to declare namespaces.
There are several ways to shed some light on it:
1) have a look at BOL (BooksOnLine), section WITH XMLNAMESPACES.
2) search this site for "XML Workshop...
April 20, 2010 at 12:32 pm
Would you mind telling us the business reason behind it?
Usually, the order of similar elements/sub-nodes within a node level is irrelevant.
What is the reason you don't want to use T-SQL?
April 20, 2010 at 12:27 pm
You could add your ACCESS db as a linked server and use it like a SQL Server database.
See BOL, section "linked servers [SQL Server], Access databases" (BooksOnLine, the SQL Server...
April 20, 2010 at 12:12 pm
gregory.anderson (4/20/2010)
...
If I read this right, we can go ahead and get rid of both the temp tables that we are using and just use the PermitsInserted table to track...
April 20, 2010 at 10:28 am
gregory.anderson (4/20/2010)
How does this code block work (the MAX part) when it is going to return a non-integer value for the error mesage?
MAX(CASE WHEN Recordindicator =1...
April 20, 2010 at 10:23 am
gregory.anderson (4/20/2010)
And Congrats to your Bachelor degree, too!!!
BTW Lutz, getting married, not graduating...
Ooops, sorry for the misunderstanding... :blush:
April 20, 2010 at 10:17 am
Great article series, Paul!
It was a pleasure being selected to get a preview and to give some thoughts/comments.
Let's see how long it takes until I have referenced those two articles...
April 19, 2010 at 3:49 pm
Steve Jones - Editor (4/19/2010)
I added some levels to the count. Didn't announce it since they really only applied to me for now. Jeff/Lynn/Gal soon.
"Soon" has been recently?
See here or...
April 19, 2010 at 3:19 pm
Please have a look at the CrossTab article referenced in my signature. Once you know how that works you probably should go to the "next level", DynamicCrossTab, referenced in...
April 19, 2010 at 2:46 pm
Edit: post removed.
Content: Side effect of the "wrong quote bug", part 2.
Was funny just for the moment...
April 19, 2010 at 2:29 pm
May I ask for the business reason for that requirement?
It sounds like a denormalized table (e.g. a monthly summary table with one column per month...)...
April 19, 2010 at 2:21 pm
Edit: post removed.
Content: Side effect of the "wrong quote bug", part 1.
Was funny just for the moment...
April 19, 2010 at 2:15 pm
Viewing 15 posts - 3,721 through 3,735 (of 5,504 total)