Viewing 15 posts - 1,081 through 1,095 (of 1,988 total)
July 7, 2017 at 9:20 am
Just because two queries generate the same results does not mean they'll have the same execution plan, but yes we would need to see more details about what you're doing....
July 6, 2017 at 11:06 am
My first job out of college I was asked to either explain or create an ERD, I think the point was mostly to demonstrate that I had some basic idea...
June 30, 2017 at 8:18 am
Just put an ISNULL around Type
Select Count(t.TicketID) AS [Number of Tickets], ISNULL(T.Type, 'Order')
From Tickets T
Group by ISNULL(T.Type, 'Order')
June 30, 2017 at 7:55 am
In general never assume that SQL server will return a consistent order without an explicit order by. Even if the system view is consistently returning in a specific order that...
June 28, 2017 at 2:15 pm
What are the downstream sources? Are there multiple downstreams that would be treating the staging data as a copy of the source data? Is this staging for a data warehouse?...
June 15, 2017 at 2:23 pm
June 15, 2017 at 2:06 pm
Yeah that's a pretty crummy way to start(and end) your first job. It was refreshing to remember being that new to the industry, if someone handed me a document and...
June 14, 2017 at 9:03 am
Do you have duplicate account numbers in the adjuster table?
Check this and see what comes back, if you are getting anything back your second query will end up...
June 13, 2017 at 1:21 pm
June 9, 2017 at 12:53 pm
So let me see if I understand. On the 1st case, the UPDATE will...
June 9, 2017 at 11:35 am
No, the first one will update the reclocat table regardless of whether this criteria is met, it.active = 1 and it.submitted = 1 and year(t.tabdate) > 1901
June 9, 2017 at 10:08 am
June 6, 2017 at 9:16 am
Well any role is easy if you don't care about the quality of your work.
June 6, 2017 at 7:12 am
May 26, 2017 at 11:48 am
Viewing 15 posts - 1,081 through 1,095 (of 1,988 total)