Viewing 15 posts - 1,021 through 1,035 (of 9,643 total)
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...
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...
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...
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...
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...
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.
May 12, 2014 at 10:30 am
have you tried referencing the textbox that contains your totals using the ReportItems collection?
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...
May 12, 2014 at 10:20 am
bsr.anwar (5/8/2014)
error stating that
Msg 15281, Level...
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...
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
...
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...
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...
May 7, 2014 at 7:06 am
Accidentally hit quote on my own post and can't delete it.
May 6, 2014 at 11:21 am
So you would need to setup the application for trusted authentication and have Kerberos set up so that the connecting user is being passed through to the database in order...
May 6, 2014 at 11:21 am
Viewing 15 posts - 1,021 through 1,035 (of 9,643 total)