Viewing 15 posts - 871 through 885 (of 1,248 total)
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
You could think of each of these as a service, that service is still a product. Even if it is a unwanted good, it still generated a line item of...
----------------------------------------------------
November 17, 2014 at 5:23 pm
Thanks for your responses. I am also looking for a good resource on WQL, if anyone has any suggestions.
Thanks.
----------------------------------------------------
November 17, 2014 at 4:25 pm
Thanks Ells. I will try that suggestion, using a script task with a variable. I was just curious if there was some issue with the query I have and why...
----------------------------------------------------
November 11, 2014 at 1:37 pm
Chris Hurlbut (11/5/2014)
Don't know if this is the cause but when you are working with excel go to the Project Properties--->Debugging and set Run64BitRunTime to False
True...
What version of Excel are...
----------------------------------------------------
November 10, 2014 at 6:54 pm
Hi,
Is there any one that can offer any advise?
It would be much appreciated. Thank you 🙂
----------------------------------------------------
November 10, 2014 at 1:47 pm
I was thinking also there are times when a business would get accounts from a client with the client's key (account #)for that account. You would create your own...
----------------------------------------------------
November 7, 2014 at 5:00 pm
Phil Parkin (11/7/2014)
MMartin1 (11/6/2014)
----------------------------------------------------
November 7, 2014 at 11:51 am
There is also the 2208 SSIS book written by Knight and team. Professional Microsoft SQL Server 2008 Integration Services (Knight, Veerman, Dickinson, Hinson and Herbold) from Wrox. It is a...
----------------------------------------------------
November 6, 2014 at 7:14 pm
Viewing 15 posts - 871 through 885 (of 1,248 total)