Viewing 15 posts - 1,021 through 1,035 (of 9,644 total)
I'm not sure I totally understand the problem as presented. Are ID and ope_number the only columns that can be different?
I think the EXCEPT operator could be your friend...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2014 at 12:44 pm
Koen Verbeeck (5/13/2014)
aaron.reese (5/13/2014)
unless you crate ##temptables which are global and can be shared by different connections.
It doesn't matter if the connection that creates the temp tables is disconnected before...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2014 at 8:00 am
This is something I've often thought about. Not having a degree in computer science, engineering, or math, I've found myself behind in theory which, at times, has led to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2014 at 6:38 am
Koen Verbeeck (5/12/2014)
Jack Corbett (5/12/2014)
I think what you will need to do is to code...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 13, 2014 at 6:19 am
Jonathan Kehayias has a query on this blog post[/url] that identifies parallel plans in the cache which can help you start tuning the SQL that might be causing the CXPACKET...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 12, 2014 at 10:36 am
It makes sense to me that adding indexes would greatly slow down replication. Think about it, for each index SQL Server has to make a copy of the data...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 12, 2014 at 10:32 am
Pretty sure you are stuck. I'm not sure how SSRS would tell Excel the size that column needs to be for each row.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 12, 2014 at 10:30 am
have you tried referencing the textbox that contains your totals using the ReportItems collection?
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 12, 2014 at 10:23 am
What do you mean by "the Wizard"? The import/export data wizard in SSMS?
I think what you will need to do is to code the package in BIDS/SSDT-BI and when...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 12, 2014 at 10:20 am
bsr.anwar (5/8/2014)
error stating that
Msg 15281, Level...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 12, 2014 at 6:57 am
Carlton,
I'm sure you could have the Script Task (Component) do it. You would need to to be a destination and not a transformation and then make sure you handle...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 12, 2014 at 6:35 am
I think this is what you need:
=Round(
(
IIF(Fields!STypeName.Value <> "SS" AND Fields!STypeName.Value <> "UA",
Fields!SDuration.Value/2,
SUM(Fields!VDuration.Value + Fields!SDuration.Value))
/60
)
,2)
This does:
IF Fields!STypeName.Value is not equal to "SS" or "UA" THEN
...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2014 at 10:18 am
Good editorial today. I want 3 things from a manager:
1. Direction - I don't always want to be picking my tasks, I want to know what needs to...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2014 at 7:20 am
David Burrows (5/7/2014)
Jack Corbett (5/6/2014)
Neither my nor David's code does exactly what you are looking for.
Not that I would normally disagree with a master 🙂 but my second...
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 7, 2014 at 7:06 am
Accidentally hit quote on my own post and can't delete it.
Jack Corbett
Consultant - Straight Path Solutions
Check out these links on how to get faster and more accurate answers:
Forum Etiquette: How to post data/code on a forum to get the best help
Need an Answer? Actually, No ... You Need a Question
May 6, 2014 at 11:21 am
Viewing 15 posts - 1,021 through 1,035 (of 9,644 total)