Viewing 15 posts - 31 through 45 (of 137 total)
Do you know a article or blog in which this things are mention , that which column name is search in the other table.
And where can i find this NameMatchingCreteria...
June 16, 2014 at 10:19 pm
So in SSAS does it match by column names ? :ermm:
June 16, 2014 at 5:31 am
Jeff Moden (5/25/2014)
Shadab Shah (5/25/2014)
...showed him some links where it was proved that SSIS loads the data faster.
Faster than what? Show us the links, please.
Thanks for the response Jeff....
May 26, 2014 at 1:05 am
I tried various permutation and combinations to insert the data using the below call, where N would be used in SP itself
DBO.InsertProperties '????' --Run the SP
It this actually possible at...
February 21, 2014 at 2:32 am
Hello Experts ,
I notice one more thing, That if i used N in the SP and not while calling , ???? gets inserted.
CREATE TABLE #TBL1 (Property nvarchar(255))
ALTER PROCEDURE DBO.InsertProperties(@Prop...
February 20, 2014 at 10:45 pm
Yeah , i too figure out what was going wrong . If we follow SQLRNNR solution, N also gets insert. Which should not happen.
I had by mistake used N as...
February 20, 2014 at 10:28 pm
I came up with the following solution
CREATE TABLE #TEMP (Value int,Type nvarchar(50),Identifier int)
INSERT INTO #TEMP VALUES(1225,'ABC', 217840)
INSERT INTO #TEMP VALUES (1225,'ABC', 121662)
INSERT INTO #TEMP VALUES (1295,'ABC', 275581)
INSERT INTO #TEMP VALUES...
January 31, 2014 at 3:32 am
Hi,
Found a piece of article written by kendra regarding Maxdop, which i think would answer your question.
http://www.brentozar.com/archive/2013/12/q-can-high-maxdop-make-a-query-slower/
January 31, 2014 at 12:23 am
Just thought of giving a Update.
The query is running with in the stipulated time.
Nothing has changed over a period of time no server settings have changed not even query...
January 10, 2014 at 10:58 pm
Sean Lange (1/10/2014)
Parameter sniffing (or the lack of it)?
It is nearly impossible to help without some details. Please see this article from Gail about how to post performance issues....
January 10, 2014 at 8:34 am
I am trying to store the value return by the select in variable. I took that variable as varchar as well as date but nohing seems to work.....
December 25, 2013 at 7:00 pm
The closes i can come to this problem is
SELECT LEFT(CONVERT(DATE,VALUE,111),7) FROM #TEMP WHERE ID=2
still it is not working. Any one who can help !!!!!!!!
December 25, 2013 at 10:52 am
Phil Parkin (12/3/2013)
Shadab Shah (12/3/2013)
December 3, 2013 at 9:47 pm
GilaMonster (11/18/2013)
None, there's no index useful for that query.
I may be wrong over here but if none index is created on the table it gets stored on heap and retrival...
November 18, 2013 at 12:34 am
Thanks once again for the reply....
But what i am trying to do is, i want to loop through
MAX( CASE WHEN rn = 1 THEN Value ELSE '' END) Option1,
MAX(...
November 3, 2013 at 11:20 pm
Viewing 15 posts - 31 through 45 (of 137 total)