Viewing 15 posts - 106 through 120 (of 14,952 total)
You can nest For Each loops in SSIS.
May 27, 2016 at 11:01 am
I agree. NULL and let the UI do the work on that.
May 27, 2016 at 10:44 am
Can you wrap the whole thing in a For Each Next loop? Around the Data Flow task?
May 27, 2016 at 10:43 am
The first candidate, a tall, black man, clean cut and more professionally dressed than most of the candidates we’d seen, entered the room.
(Emphasis added)
Why is it even necessary to...
May 27, 2016 at 10:40 am
Depends on what you want to do with the values.
May 27, 2016 at 10:19 am
Try this:
SELECT
OBJECT_NAME(I.object_id),
I.name,
I.type_desc,
Cols.IDX_Width
FROM
sys.indexes AS I
CROSS APPLY (SELECT
SUM(C.max_length) AS IDX_Width
FROM
sys.index_columns AS IC
INNER JOIN sys.columns AS C
ON C.object_id = IC.object_id
AND C.column_id = IC.column_id
WHERE
IC.object_id = I.object_id
AND IC.index_id = I.index_id)...
May 27, 2016 at 9:47 am
fergfamster (5/26/2016)
here is my original with 1 inline query:
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
ALTER FUNCTION [dbo].[MyFunction](
@Usage_Date SmallDAteTime,
@RateCode Varchar(4)
)
RETURNS TABLE...
May 27, 2016 at 9:40 am
Don't leave because you think something else might be better. Leave because you know it will be better.
I've seen a LOT of "greener grass" that turned out to be...
May 27, 2016 at 9:02 am
The most important thing to keep in mind about performance tuning is: Be sure you're tuning what needs it.
I've seen months and fortunes wasted tuning things that nobody cared about...
May 27, 2016 at 8:56 am
I just found another query by the same person, where it divides a Numeric column by 100, then casts it as Varchar, then LTrims and RTrims the result, in a...
April 12, 2016 at 4:21 pm
Jeff Moden (4/11/2016)
J Livingston SQL (4/11/2016)
if there are millions of rows as suggested then it would be good...
April 11, 2016 at 4:19 pm
Eric M Russell (4/11/2016)
Is MyColumn of type VarChar? Perhaps what they intended to do was convert NULL values to the string 'NULL'.For example:
ISNULL(MyTable.MyColumn, 'NULL') AS MyColumn
No single-quotes...
April 11, 2016 at 4:15 pm
Hugo Kornelis (4/10/2016)
SELECT List,...
April 11, 2016 at 1:42 pm
Then, of course, there are the opposite situations:
I was interviewed for a Senior SQL Dev position a while back. First question they asked was the differences between Truncate and...
March 21, 2016 at 3:44 pm
Phil Factor (3/21/2016)
March 21, 2016 at 6:23 am
Viewing 15 posts - 106 through 120 (of 14,952 total)