BCP copy out failed

  • I am running a command which Had been always working until today.

    EXEC master..xp_cmdshell 'bcp ultisaas.dbo.BLDS_Kaiser out c:\2012OpenEnrollment\bloodsourcefile_ca.txt -T -c -t'

    I gout the output as following:

    NULL

    Starting copy...

    SQLState = 37000, NativeError = 4121

    Error = [Microsoft][SQL Native Client][SQL Server]Cannot find either column "MASTER" or the user-defined function or aggregate "MASTER.dbo.ParseAuditCXNContext_Info", or the name is ambiguous.

    SQLState = S1000, NativeError = 0

    Error = [Microsoft][SQL Native Client]Unable to resolve column level collations

    NULL

    BCP copy out failed

    NULL

    Anybody can give a help on this error that I've never seen and couldn't find out on google as well.

    Thanks!

  • Does the query you use in BCP work when run from SSMS?

    -- Gianluca Sartori

  • Have you tried running BCP from a batchfile

    ???

    SET database=yourdbname

    SET Sever=yourSQLserverinstance

    bcp %DATABASE%.dbo.yourtable out "yourtable.bcp" -n -T -S%

    ***The first step is always the hardest *******

  • So you are saying that this ran yesterday and the day before and etc but now it won't run. If this is the case, then someting has changed, probably the permissions on the folder that the file is written to. That is the first thing that I would check.

Viewing 4 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic. Login to reply