Viewing 15 posts - 856 through 870 (of 1,241 total)
rhythmk (11/18/2014)
Koen Verbeeck (11/18/2014)
Did you try to do a repair of the SSIS installation?Or maybe remove it and install it again.
Not yet Koen.Actually this is PROD server and not maintained...
----------------------------------------------------
November 21, 2014 at 3:25 pm
The reason the dataflow does not work inside a for each loop container, my thinking, is that every column passed through the dataflow data buffers has a unique lineageID. ...
----------------------------------------------------
November 21, 2014 at 12:21 pm
I dont think temporary tables have anything to do with the inability to return results to excel. I dont think you need to avoid them. The final select in the...
----------------------------------------------------
November 19, 2014 at 7:38 pm
iammichaelclark 21625 (11/18/2014)
I am having two columns with the money datatype values.
Column1 Column2
$134,456 $15,897
$123 ...
----------------------------------------------------
November 19, 2014 at 4:48 pm
Eirikur Eiriksson (11/18/2014)
serg-52 (11/18/2014)
kriskumark96 (11/17/2014)
The three queries is of the same tables with different where condition are used , so that we cannot have a join or cross join on...
----------------------------------------------------
November 19, 2014 at 4:17 pm
The first thing that stood at at me was that you want to invest in new infrastructure rather than investigate the cause of report slowness. I do like the idea...
----------------------------------------------------
November 19, 2014 at 2:32 pm
On the SSRS server you can reach the firewall settings through the control panel.
I am curious as to what changed two weeks ago from your post. I would talk...
----------------------------------------------------
November 18, 2014 at 6:14 pm
This might help comparing the versions
http://msdn.microsoft.com/en-us/library/cc645993.aspx
For an older version you could search Ebay though I am not knowledable on the legals of transfering licenses.
----------------------------------------------------
November 18, 2014 at 2:33 pm
From MSDN,
"For a database under the full recovery model, all row-insert operations that are performed by bulk import are fully logged in the transaction log. "
http://msdn.microsoft.com/en-us/library/ms190422(v=sql.105).aspx
A Bulk Insert is...
----------------------------------------------------
November 18, 2014 at 2:25 pm
Jeff Moden (11/17/2014)
MMartin1 (11/17/2014)
dogramone (11/16/2014)
----------------------------------------------------
November 18, 2014 at 12:24 pm
You approach doesn't account for when you have a valid reason to insert the data again. Such would be the case when you got the original file with some or...
----------------------------------------------------
November 18, 2014 at 11:49 am
Just to cover this, how did you conclude there are members missing? Does the process that moves the data from the flat file truncate the table before loading it (by...
----------------------------------------------------
November 17, 2014 at 7:05 pm
Assuming the item name can indicate a leaf level part... might this be what you are looking for
with MstrTable as (
SelectBom.Compitemno
, 1 as [level]
fromBOM
whereBOM.CompItemno = 'Parent1'
UNION ALL
SelectB.Compitemno
, MstrTable.[LEVEL]+1...
----------------------------------------------------
November 17, 2014 at 6:55 pm
I am wondering if it could be a firewall issue or an issue connecting from SSRS to the Exchange server. Also, did a password for some service account get changed...
----------------------------------------------------
November 17, 2014 at 5:47 pm
dogramone (11/16/2014)
----------------------------------------------------
November 17, 2014 at 5:39 pm
Viewing 15 posts - 856 through 870 (of 1,241 total)