Viewing 15 posts - 376 through 390 (of 1,241 total)
points back to the source/staging table
Just does not come across to me as a good idea. That should be defined and referred to in your ETL process.
December 9, 2016 at 10:53 am
I think it is a good idea to keep the business ID along with your surrogate key definitely. As far as the source, that sounds to me more for auditing...
December 9, 2016 at 10:52 am
I am also assuming that the odoReading (mileage) increases with time , we are talking about vehicle miles correct?
December 6, 2016 at 7:33 pm
I think you may have to keep track of the vehicle as well?
If you dont mind doing it the old fashion way (pre Lag() and Lead() ) here is a...
December 6, 2016 at 7:32 pm
You can also opt to display your results to TEXT (rather than the default grid). The nature of a cell is such that the value takes priority over the...
December 6, 2016 at 7:18 pm
It makes sense to me to have these functions in their own database so as to keep a consistent definition of them in one central spot. Keeps you from having...
December 6, 2016 at 7:09 pm
See if this is helpful to you .
https://msdn.microsoft.com/en-us/library/ms186329.aspx
The article has an example that makes use of a audit table. I have to wonder if you are not concerned about...
December 6, 2016 at 6:58 pm
The problem may be that you are also creating a table inside the inner stored procedure ( with the same name I presume). In these cases each object is local...
December 5, 2016 at 3:51 pm
I only want to include the Doctor groups that have >11 discharges.
Do you mean across the whole twelve months or just 11 or less in any one month?
One...
December 2, 2016 at 4:05 pm
Partha Mandayam (11/30/2016)
Not really. Many undocumented procedures work fine and are really useful.
Depends on what you mean by working fine. You are stepping into the unknown and items like what...
November 30, 2016 at 12:16 pm
spidey73 (11/28/2016)
When you create a SSIS package, you create connection managers.
These connection managers and the...
November 30, 2016 at 12:06 pm
The casing is taken into accounts with names of the worksheets? Though I believe this would produce an error still good to be sure. And the list(s) in that fifth...
November 30, 2016 at 11:58 am
The DATEFROMPARTS function does not work in the 2008 edition.
As an alternative ...
declare @fromDate date, @toDate date ;
select @fromDate=
dateadd(m,0,cast(Cast(year(getdate())-2 as char(4)) as date))
select @toDate = cast(getdate() as...
November 30, 2016 at 11:08 am
mugilanoracle (11/29/2016)
please tell me how to export sql server single table into multiple excel sheets in single Excel file using SSIS package.(ex-have region column in source table and have to...
November 30, 2016 at 10:25 am
Ed Wagner (11/30/2016)
Sean Lange (11/30/2016)
Do be careful using this procedure in a production environment. It will sometimes skip databases. http://sqlblog.com/blogs/aaron_bertrand/archive/2010/12/29/a-more-reliable-and-more-flexible-sp-msforeachdb.aspxHere is another great article on the topic. https://spaghettidba.com/2011/09/09/a-better-sp_msforeachdb/%5B/url%5D
Yes it does....
November 30, 2016 at 10:12 am
Viewing 15 posts - 376 through 390 (of 1,241 total)