Viewing 15 posts - 1,501 through 1,515 (of 11,678 total)
Most of that information can be found in the DMVs. (dynamic management views)
Here's a free eBook:
October 30, 2014 at 1:47 am
You cannot update a table using the OLE DB Destination.
You need to use the OLE DB Command for that. However, this component will update the table row by row, so...
October 30, 2014 at 1:45 am
Number 1 will indeed install a shell of VS 2012.
October 29, 2014 at 2:55 pm
I guess it depends most if the table is a heap or if it has a clustered index.
Additional indexes will slow down the insert even more, especially in larger indexes.
Other...
October 29, 2014 at 8:03 am
I think you should include a PARTITION BY in your ROW_NUMBER() function.
Something like ROW_NUMBER() OVER(PARTITION BY keySystem ORDER BY id) AS [rowNumber1]
October 29, 2014 at 7:18 am
Phil Parkin (10/29/2014)
Wow, great thinking sir! That does indeed appear to be the case.
Bumped against that wall a few times myself 🙂
October 29, 2014 at 6:25 am
OK.
Keep in mind though that in the second CASE example, you will get a NULL when the length of sample is bigger than 9.
Personally I would check the length of...
October 29, 2014 at 6:23 am
Phil Parkin (10/29/2014)
Koen Verbeeck (10/29/2014)
Do you install from an .iso you downloaded?
It was an iso, but I extracted the files from it using 7-Zip and then did the install from...
October 29, 2014 at 6:12 am
This CASE statement does the following:
* if sample is NULL, return NULL
* if sample has a length bigger than 9, return 0
* else return first 3 characters of "0-prefixed sample...
October 29, 2014 at 6:09 am
Do you install from an .iso you downloaded?
October 29, 2014 at 5:53 am
Your entire case statement can be rewritten as RTRIM(SUBSTRING(Sample, 1, 6)).
This will return NULL when Sample is NULL. SUBSTRING on a non-null string will never return NULL, so you can...
October 29, 2014 at 5:49 am
Carlo Romagnano (10/29/2014)
SELECT
stuff(Ms, 1, 1,'')
FROM
( SELECT
...
October 29, 2014 at 2:51 am
Louis Hillebrand (10/29/2014)
BTW. Koen, we're not far apart, I'm in Kortenberg.
That is indeed quite close 🙂
October 29, 2014 at 2:30 am
You still need to install SSDT-BI. If Visual Studio is already installed, the BI templates will just be added to VS.
However, VS 2013 is for developing BI projects on SQL...
October 29, 2014 at 2:08 am
Viewing 15 posts - 1,501 through 1,515 (of 11,678 total)