Viewing 15 posts - 481 through 495 (of 7,168 total)
Are both datasets coming from the same data source? If so, is joining them at the source an option?
January 17, 2016 at 12:26 am
Here is what a query using my calendar table would look like:
SELECT TOP 1
t.PlanID,
t.TaskInstructions,
...
January 16, 2016 at 4:24 pm
There are plenty of ways of circumventing local restrictions of what you can, or can't, do in the database build process, but it would be much better if these arbitrary...
January 16, 2016 at 1:29 pm
Jeff Moden (1/16/2016)
Orlando Colamatteo (1/16/2016)
Jeff Moden (1/15/2016)
murtzd (12/17/2015)
I'm experiencing a very frustrating issue. I am using the guide below to read a cell value in Excel into a SSIS...
January 16, 2016 at 1:21 pm
Jeff Moden (1/15/2016)
murtzd (12/17/2015)
I'm experiencing a very frustrating issue. I am using the guide below to read a cell value in Excel into a SSIS variable;
http://www.techbrothersit.com/2013/11/ssis-read-excel-cell-value-in-ssis.html
It works very well...
January 16, 2016 at 12:52 pm
ScottPletcher (1/16/2016)
Orlando Colamatteo (1/16/2016)
ScottPletcher (1/16/2016)
It's more efficient to avoid I/O when you can.
There could be a trade off for CPU and coding effort. If you wrapped the calculation into an...
January 16, 2016 at 12:52 pm
ScottPletcher (1/16/2016)
It's more efficient to avoid I/O when you can.
There could be a trade off for CPU and coding effort. If you wrapped the calculation into an iTVF (which we...
January 16, 2016 at 12:28 pm
ScottPletcher (1/16/2016)
January 16, 2016 at 11:20 am
There is a repro and explanation is in the SSC Forum thread linked to in the Connect item albeit using an expression in the ORDER BY:
http://www.sqlservercentral.com/Forums/Topic607455-145-1.aspx
Here is another repro using...
January 16, 2016 at 10:42 am
I'll dig/work one up and post back.
The XML technique is OK, just, OK. And if used I prefer to add TYPE to avoid entitization.
For CLR http://groupconcat.codeplex.com will get you...
January 16, 2016 at 9:11 am
Luis Cazares (1/14/2016)
SELECT @Notes = @Notes + CONVERT(char(11), DATE, 103) + NOTES + CHAR(10)FROM tblNOTES
WHERE NOTE_ID = @NOTE_ID
...
January 16, 2016 at 8:21 am
True. I haven't heard anything that cannot be persisted yet, but you never know.
January 16, 2016 at 8:13 am
I think these "calculations" would become simple lookups on a calendar table using ROW_NUMBER() with PARTITION BY and ORDER BY.
January 16, 2016 at 7:59 am
The fact that the author is not citing RFC4180 is troubling. This is exactly where many implementations start out on a bad foot, namely they are making up their own...
January 15, 2016 at 11:52 am
Luis Cazares (1/15/2016)
Orlando Colamatteo (1/15/2016)
guy 1966 (1/15/2016)
Ok, I finally found what I neededUPDATE `categories_images` SET `categories_image`=REPLACE (`categories_image`,'.gif','');
UPDATE `categories_images` SET `categories_image`=REPLACE (`categories_image`,'','');
Thank you!
@guy1966, I am not sure why you insisted on...
January 15, 2016 at 11:34 am
Viewing 15 posts - 481 through 495 (of 7,168 total)