Forum Replies Created

Viewing 15 posts - 346 through 360 (of 684 total)

  • RE: Save Package Layout?

    P Jones (1/29/2008)


    Sounds like you're seriously missing the plot here! BIDS is designed to work on dtsx and you create in BIDS, deploy to either package store or SQL msdb....

  • RE: Save Package Layout?

    P Jones (1/29/2008)


    Perhaps it's the Tools Options settings in BIDS (aka Visual Studio 2005) that make it re-draw?

    That's what I thought it might be but I've been through most of...

  • RE: Save Package Layout?

    I'm just saving the packages normally through the studio designer, which saves the .dtsx file.

    Maybe there's something wrong/weird about my installation. I'll see if I can find another machine...

  • RE: Save Package Layout?

    Anyone?

    Sure this must be possible?

  • RE: Autogrow Timeout Expired

    GilaMonster (1/15/2008)


    Instant file initialisation requires that the account that runs SQL has permission to do volume maintenance.

    Check the local security policy for the server, find the item 'Perform Volume Maintenance...

  • RE: Autogrow Timeout Expired

    This is on SQL Server 2005 by the way.

    I agree with everything you're saying Jeff but at the same time, with all the best laid plans, sometimes things don't work...

  • RE: variable value is wrong when package is run through job

    The variable is set from within the package. I just added a variable, set the property EvaluateAsExpression to True and filled in the expression. The Scope of the...

  • RE: Users not mapped

    It's fairly easy to do.

    Just open up SQL Server Business Intelligence Studio and create a new project.

    On the left hand side, in the Tool Box, select the Transfer Logins Task...

  • RE: Users not mapped

    You can use SSIS to transfer the logins from the primary server to the secondary server. Just make sure you specify the option to copy the SIDs with the...

  • RE: A Couple of question relating the the AdventureWorks Database

    lenardd (11/26/2007)


    Hi All,

    My two questions relate to this schema and documentation.

    Why is a composite PK needed for the SalesOrderDetail table when SalesOrderDetailID is already an identity column?

    Second, is it ideal...

  • RE: How to join a Table in SQL Server with a Flat (txt) file?

    There are various things you can do here.  Import the file into a table and then do the join, use openrowset or opendatasource.  Here are a couple of examples.....

  • RE: How to split a datafile

    I can't say for sure whether you'd need to rebuild your clustered indexes but it's always worthwhile running a dbcc showcontig regularly and rebuilding your indexes if they need to...

  • RE: How to split a datafile

    You could do this by first creating 4 additional files.

    Then run dbcc shrinkfile (file_id, emptyfile) on the original file, which will migrate the data in the original file and spread...

  • RE: How can i get window login name???

    You could do as Kiran has suggested but be aware that if you're logged in to a SQL Server remotely using sql authentication then there is no windows login name...

  • RE: How can i get window login name???

    That query returns the login name of the logged in user, which in the original posters case is a sql server login, not a windows login.  What the poster wants...

Viewing 15 posts - 346 through 360 (of 684 total)