Forum Replies Created

Viewing 15 posts - 4,486 through 4,500 (of 7,187 total)

  • RE: The Beer Cooler Thread

    The phrase "beer cooler" is anathema to me, since 90% of beers worth drinking here in the UK are served at room temperature (or certainly no colder than cellar temperature)....

  • RE: Transactions 3

    OK, thanks for all the replies. Plenty to think about here.

    Hugo Kornelis (5/30/2012)


    The keywords in this statement are "all of its data modifications". I interpret this as "everything that...

  • RE: script to backup and detach a db

    Craig

    Does the database have the same name in each case? Why not write an sp_detach_db script that your people can execute on each server? To make it even...

  • RE: Transactions 3

    Hugo Kornelis (5/30/2012)


    John Mitchell-245523 (5/30/2012)


    I must admit I'm surprised that having SET XACT_ABORT OFF is the default.

    I am not. I prefer to be able to handle my errors myself; SET...

  • RE: script to backup and detach a db

    Craig

    Probably the easiest way (especially if you are going to do this more than once) is to create an SSIS package to loop through all the servers and detach the...

  • RE: Transactions 3

    I must admit I'm surprised that having SET XACT_ABORT OFF is the default. I take the point that READ COMMITTED breaks the rules of isolation anyway, but I find...

  • RE: SSIS error.......

    Right, if it's still not working then run the package in Visual Studio and watch for where it fails. You can then concentrate your investigation in the correct place....

  • RE: SSIS error.......

    2)advance editor for ole db destionation -----input.output tab---external columns

    -----data type :dt_str

    lenght--1

    Did you change this as well? You need to go through your whole data flow and make sure that...

  • RE: ForLoop to check any row is present in the source table

    Jim

    Connect to the Integration Services server in SSMS, expand the list of running packages, and stop the one that is over-running.

    Edit: that's not the best way of doing it on...

  • RE: SSIS error.......

    There's your problem, then. You're trying to fit 255 characters in a char(1) column. The column in your table needs to be varchar(255) and the columns in your...

  • RE: SSIS error.......

    What is the longest string in column 2 of your text file?

    John

  • RE: how to copy sql2005 msdb ssis packages to sql2008 msdb

    Yes, open, convert, save.

    There may well be a quicker method, but I'm not aware of it. The internet is a great resource for stuff like this, if you choose...

  • RE: bcp xp_cmdShell error

    The account that runs SQL Server needs read permission on the folder that contains the file you're importing from.

    John

  • RE: bcp xp_cmdShell error

    You mean a mapped drive - N:\MyFolder, where N: is mapped to \\MyServer\MyShare? Better to use a UNC, since the code will be executed in the context of the...

  • RE: bcp xp_cmdShell error

    This is the line you need to change:

    SET @bcpCommand = @bcpCommand + '''' + @assetNumber + ''''

    John

Viewing 15 posts - 4,486 through 4,500 (of 7,187 total)