Viewing 15 posts - 7,186 through 7,200 (of 13,877 total)
mbavabohrude (4/22/2016)
Could you please throw some techniques or any valid query for replacement of this query . Help is highly appreciated as i...
April 22, 2016 at 6:03 am
j-1064772 (4/21/2016)
He was referring to the specific cases a dictionary structure so...
April 21, 2016 at 10:56 am
There's a lot going on here and I understand your confusion. There are several moving parts. I'll do my best to clarify some things – if anyone sees any errors...
April 21, 2016 at 10:51 am
j-1064772 (4/21/2016)
Having said that, C# includes very efficient dictionary structures that can be used to process data way faster than the SQL Server can, if the network can handle the...
April 21, 2016 at 10:31 am
SQL006 (4/21/2016)
No i am not using dynamic SQL, just passing it to storeprocedure as a parameter which is used in 'IN' operator.
one doubt does REPLACE has any performance...
April 21, 2016 at 6:42 am
NJ Smith (4/21/2016)
if you are working with SQL Server 2016 then there is a new function called STRING_SPLIT ( string , separator )
Indeed there is. But I see no string...
April 21, 2016 at 6:37 am
Alan.B (4/20/2016)
Con Alexis (4/20/2016)
e.g.
WITH Data AS
(
SELECT 1 AS ID, '1/1/1900' AS Date
UNION ALL SELECT 2, '1/1/1900'
UNION ALL SELECT 3, getdate()
UNION ALL SELECT...
April 21, 2016 at 6:35 am
Luis Cazares (4/21/2016)
DECLARE @Codes nvarchar(500) = 'AZJ,CLC,AZF,DDD'
SELECT REPLACE(@Codes, ',', ''',''')
Are you doing this for dynamic sql coding? Are you aware...
April 21, 2016 at 6:32 am
VastSQL (4/21/2016)
Do we need to consider these column which are more read intensive?
I had the same doubt as article mentioned, that instead of creating index just for FK column...
April 21, 2016 at 6:29 am
I see it too. Just need to reduce the height of the Connection Managers section to its minimum.
Whoever Mick is, we can be assured that his owner drew the tab...
April 21, 2016 at 6:21 am
vinodkm (4/21/2016)
Please help me to understand how to connect SSDT projects to TFS.
Actually my requirement is to keep version for SSIS packages, SSRS report and SSAS projects in TFS.
Thanks...
April 21, 2016 at 6:16 am
VastSQL (4/21/2016)
We have more than 100 Foreign Keys with no supporting index. Do we need to add index on all these Foreign Keys ?
Can someone help on fixing this...
April 21, 2016 at 6:12 am
Same again, but with my SELECT MAX() solution tagged on to the end.
CREATE TABLE temp (ID INT, Date DATE);
WITH E(n)
AS (SELECT...
April 20, 2016 at 12:27 pm
astrid 69000 (4/20/2016)
I read and read and I understood. and it worked :-P:-P
Here is my code
declare @x xml
DECLARE @site_value INT;
SET @site_value = 0;
WHILE @site_value <= 1000
BEGIN
select @x =...
April 20, 2016 at 10:56 am
Here's an UPDATE version:
IF OBJECT_ID('tempdb..#test', 'U') IS NOT NULL
DROP TABLE #test;
CREATE TABLE #test
(
Id INT PRIMARY KEY
,dt DATE
...
April 20, 2016 at 9:44 am
Viewing 15 posts - 7,186 through 7,200 (of 13,877 total)