Viewing 15 posts - 8,176 through 8,190 (of 26,490 total)
bpowers (4/3/2013)
April 3, 2013 at 9:45 am
TheSQLGuru (4/3/2013)
refactor your TVF to be an INLINE TVF and use that. Also push that SELECT ...(SELECT...) out like previous poster did.
Actually, the TVF being used is an in-line TVF.
April 3, 2013 at 9:10 am
And this rewrite of the function should work like the one Chris provided in-line in his code.
CREATE function [dbo].[woccsr_ts_amt] (
@wo_id varchar(24),
@cc_id varchar(24),
...
April 3, 2013 at 9:06 am
Something like this:
SELECT top 250000
x1.wo_ref AS [z13031322175522447287ca90],
sum(wta.approved_ts_amount) AS [z13031322175522447289ca90]
FROM
dbo.wo AS x1
INNER JOIN dbo.wocc AS...
April 3, 2013 at 9:01 am
I'm curious, how do most of you like your dihydrogen monoxide, straight or flavored?
April 3, 2013 at 7:37 am
rajarshi_ghosh_05 (4/2/2013)
DiverKas (4/2/2013)
rajarshi_ghosh_05 (4/2/2013)
April 2, 2013 at 3:16 pm
skb 44459 (4/2/2013)
vend_num NVARCHAR(7) NULL ,
name ...
April 2, 2013 at 12:33 pm
Can't find anything, yet, directly from Microsoft but I did find this:
.NET Framework 4.0 is separate and independent from .NET Framework 2.0/3.0/3.5 (all one framework. 2.0 is the base, full,...
April 2, 2013 at 11:14 am
This is the key part when I read the article I pointed you to:
In general, you should not uninstall any versions of the .NET Framework that are installed on your...
April 2, 2013 at 10:49 am
umarrizwan (4/2/2013)
you can convert it after removing that value from data.
use this.
SELECT...
April 2, 2013 at 10:28 am
This may help: http://msdn.microsoft.com/en-us/library/bb822049.aspx
April 2, 2013 at 10:11 am
The following runs without error on my system. I had to correct some errors in the code provided.
You will want to run the following in a sandbox database first...
April 2, 2013 at 9:06 am
Sean Lange (4/2/2013)
Jeff Moden (4/1/2013)
Sean Lange (4/1/2013)
Your data is not normalized and your results are not normalized. The reason this is difficult is because your structures make this difficult.
Heh... I...
April 2, 2013 at 7:48 am
opc.three (4/1/2013)
mister.magoo (4/1/2013)
Lynn, Nope that pretty much sucks too! :hehe:
Lynn's numbers seem off to me. I got ~10s for your method and ~50ms for Lynns. But Lynn's numbers make it...
April 1, 2013 at 11:41 pm
KoldCoffee (4/1/2013)
Yes, I agree. There's also an sp_msforeachdb function available....But I needed to learn the cursor
Actually, we can probably show you how to do this without using...
April 1, 2013 at 11:18 pm
Viewing 15 posts - 8,176 through 8,190 (of 26,490 total)