Viewing 15 posts - 4,696 through 4,710 (of 6,486 total)
If I understand you correctly - you're looking to create an xml fragment using for XML Explicit, and then insert it into an XML column?
If so - you need to...
February 15, 2008 at 12:24 pm
With the right covering index(es) - you'd have to have an awfully large DB before pre-generating would be worth it (IMO)...
Glad that was helpful.
February 15, 2008 at 12:08 pm
Other notes:
- Unit test coverage (and better yet Test driven development) of the data provider is CRITICAL. This is hard when you introduce a state machine like a database -...
February 15, 2008 at 11:41 am
Greg Snidow (2/15/2008)
Matt Miller (2/15/2008)
Or - you could run reporting services and just send them a link to the report (which wouldn't need to change)...
Well, I do not want to...
February 15, 2008 at 11:06 am
If we're talking about classic ASP - there's a serious "man in the middle" problem with SQL code being executed like that (on top of the "ASP is not encrypted,...
February 15, 2008 at 10:57 am
well - depends on what you mean. you can add parameters to a report, and since you can use a stored procedure as the basis of your report, I...
February 15, 2008 at 10:40 am
I know of two basic strategies. The difference between the two is whether you apply a specific payment to a specific bill, or if it just gets applied to...
February 15, 2008 at 10:02 am
Try this on:
with FinWeekCTE as
(select *, datediff(day,dateadd(year,datediff(year,0,dateval),0),dateval) / 7 %13 as weeknum
from dates)
select *, case when weeknum=12 then 5 else weeknum%4+1 end as finweek
from finWeekCTE
February 15, 2008 at 9:15 am
Jeff Moden (2/15/2008)
Caught me? Heh... I jumped right out in front of ya 😀What you say is similar to what I used to say and think.
I know...It's just that this...
February 15, 2008 at 8:58 am
Jeff Moden (2/15/2008)
All the code does is multiply the DECIMAL and FLOAT versions of the number .3333 times an INTEGER. Notice in column 3 how early (3rd row)...
February 15, 2008 at 8:03 am
Well - you only have two options: either make the field it's going into bigger (right way), or make what is to go into to it smaller (not the right...
February 15, 2008 at 7:49 am
Just for giggles - have you considered using LDAP queries instead?
LDAP actually has an OLE DB -type provider, so you can actually set your Active Directory as some...
February 15, 2008 at 7:32 am
What do you need further suggestions on? It sounds like you have a pretty good handle on things...
The one suggestion I can make (which was made by one of...
February 15, 2008 at 7:22 am
Jeff Moden (2/14/2008)
February 15, 2008 at 7:07 am
Or - you could run reporting services and just send them a link to the report (which wouldn't need to change)...
February 15, 2008 at 6:54 am
Viewing 15 posts - 4,696 through 4,710 (of 6,486 total)