Forum Replies Created

Viewing 14 posts - 46 through 59 (of 59 total)

  • RE: Access denied in Stored Procedure during SSIS run by others

    For the difference between EXECUTE AS options, please consult:

    http://msdn.microsoft.com/en-us/library/ms181362.aspx

    and as for stored procedure permissions, please consult books online or MSDN. Just creating a proc doesn't mean that users have permissions...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: SQL 2008 BCP Export

    OK, are you sure it's not a client-side issue ?

    http://support.microsoft.com/kb/948615

    also, see this MSDN piece:

    http://social.msdn.microsoft.com/Forums/sqlserver/en-US/d46c5a0a-643a-4278-adfc-14a212397780/limitation-for-excel-rows-when-exporting-in-bcp?forum=transactsql

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Access denied in Stored Procedure during SSIS run by others

    You need to confirm that you do indeed have the same permissions on the database. Authentication is a bit weird, but if you both get the same results from this...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Find out job owner

    ..or, if this happens a lot, and it's on SQL2008 and above, you could use Policy Based Management. 🙂

    Easier solution would be to use Powershell.

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: SQL 2008 BCP Export

    I'm not sure you can use BCP to export directly to XLSX, and I'm not even sure you can use it to export driectly to XLS. You can export to...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: litespeed backup consumes high cpu

    Bhuvnesh (9/24/2013)


    Perry Whittle (9/19/2013)


    Using the @affinity and @throttle parameters you are able to specify which processors the backup uses and the max CPU %

    Can we take help of...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Why should we have multiple FileGroups instead of one?

    Certainly, partitioning is one case for multiple file groups (although I have seen sliding windows partitions on the PRIMARY filegroup). If you partition-align your indexes as well, that's a win...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: SQL Server wont start. SSCM shows 2000 login ???

    From memory, the 20 character limit is usually when you're running a Hybrid (NT4 and Post Win2K) Active Directory. I've not come across anyone using an AD infrastructure (ie Windows...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Sequences II

    So, the key bit here is that SQL will *decide* whether the sequence is ascending or descending based on the INCREMENT BY argument. That's a bit misleading if your just...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Contained Databases

    Agree with those who say the question is a bit confusing.

    If you have containment set to NONE, then it's not a contained database, surely ? Especially since all new databases...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Temporary Objects 2

    You're right, and for the reasons in my blog post 🙂

    My bad. Sorry, I'll get my coat.

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Temporary Objects 2

    Even if you hadn't added the constraint to the table, the second program would still fail because there would already be the temp table from the first program.

    I wrote a...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: Default and Named Instance

    Possibly because INSTANCE01 is on the port that would normally be used for a default instance.

    Maybe when you make a request to a default instance (i.e. no instance name), a...

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

  • RE: SSIS question

    You could try using an expression on the connection string for your destination that constructs the file name from variables that are incremented each time you SELECT your TOP 99.

    [font="Courier New"]sqlmunkee[/font]
    [font="Courier New"]Bringing joy and happiness via SQL Server since 1998[/font]

Viewing 14 posts - 46 through 59 (of 59 total)