Link to home
Start Free TrialLog in
Avatar of ilikemycar
ilikemycar

asked on

SSIS Temp Buffer

I am running a series of DTS package on SQL Server 2005 each night. They are configured to run with the SQL Agent one after another.
However every night, there is at least one job (different every night) that fails to run, and I get the error about the BufferTempStoragePath:

The buffer manager cannot create a temporary storage file on any path in the BufferTempStoragePath property. There is an incorrect file name or no permission.  

The server is running Windows 2008, each of the Data Flow tasks is set to use the recommended 10Mb, and I am using an SSIS Configurations to set the BufferTempStoragePath to a folder on a different drive from the OS.
The server has 4GB of memory, and as recommended only 2GB are assigned to SQL. The user under which the jobs run has full permissions on the alloted folder.

Can anyone shed any light on this please?


Avatar of Raja Jegan R
Raja Jegan R
Flag of India image

As message says, the temporary files are created in directory specified by BufferTempStoragePath property of data flow task. By default it uses user's temporary files folder (%TEMP%), but can be overridden for each data flow task. There is a problem with this path, and data flow can't create temporary files there. Check that the path is correct, you have permissions to write to this path, and there is enough free space during package execution.

http://www.safnet.com/writing/tech/archives/2008/02/ssis_suddenly_c.html

Hope this helps
Avatar of ilikemycar
ilikemycar

ASKER

Thanks for your response. I'd come the article before I got to posting here.
The %temp% folder does exist, and also the path I have configured in SSIS Configurations is valid, and I do have full permissions. There is also over 30GB free space on the drive.
The path & permissions must be valid as its a different package that fails each night, and it appears to be completely random which.
Is there by any possibility that package uses some other user credentials for execution since it is scheduled in a job
No. Have created a SQL proxy account for a domain user account specifically for this task.
All analysis steps in job are set to run under this proxy account.
Kindly verify whether this proxy account holds privileges to create the temp files in the mentioned path.
That's a tricky one.
How would I go about verifying that?
The domain account that the proxy is linked definitely has, but how do I check the sql proxy account directly?
Try creating some file in that path using your SSIS package itself.
It would tell you whether you have access or not right.
Sorry, should have thought about that before I responded.
It must have because I'm outputting raw files of all the data processed to an adjacent directory and they have identical permissions
Can you kindly confirm that for this folder.
I just tweaked one of the packages to write this raw file output the same folder as the temp buffer storage and there's now a raw file there.
Any other ideas would be very much appreciated?
ASKER CERTIFIED SOLUTION
Avatar of fullyblaze
fullyblaze

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial