Forum Replies Created

Viewing 15 posts - 5,521 through 5,535 (of 7,168 total)

  • RE: SQL Server 20058 R2 Upgrade

    This is a hunch as I have not seen this error before. Check the "SQL Server Browser" service to see who the service is logging in as. If it's a...

  • RE: SSIS: What's New in Denali

    From your presentation - hooray!

    > easy to diff package format

    > relative path references

    Koen Verbeeck (7/14/2011)


    The most impressive feature for me is the whole new project deployment model with parameters (already...

  • RE: GRANT Issues

    yoffes (7/14/2011)


    A user has a role (testrole) through which permissions are granted to her. She is working in the dbo schema, but is not the owner. The role has Create...

  • RE: SSIS: What's New in Denali

    Koen Verbeeck (7/13/2011)


    Phil Parkin (7/13/2011)


    Here is more detail. Some superb new features.

    Oh crap. I had already trouble putting all the new features of CTP1 into a hourly session.

    How am I...

  • RE: SSIS: What's New in Denali

    Phil Parkin (7/13/2011)


    Here is more detail. Some superb new features.

    The list of new features is impressive...lots of my past gripes have been addressed 🙂

    Huge improvements for me:

    > Load files with...

  • RE: concatenating question

    Right...but what is the result of the query I posted on your instance?

  • RE: Execute Process Task stuck when running via SQL Agent Service Account

    This article refers to packages that will not run at all.

    is250sp (7/13/2011)


    I have a package where the first task is an Execute Process Task that runs a .BAT...

  • RE: providers when using linked servers

    Yes. You should start using the SQL Native Client (SQLNCLI10).

  • RE: concatenating question

    What specific version of SQL Server are you using?

    SELECT 'ProductVersion', SERVERPROPERTY('ProductVersion')

  • RE: SQL Pivot

    @suri.yalamanchili, please consider using a Dynamic Cross Tab query instead of building a query with the PIVOT operator:

    Cross Tabs and Pivots, Part 2 - Dynamic Cross Tabs[/url]

    The article above is...

  • RE: calling stored procedure in a cursor

    bagofbirds-767347 (7/13/2011)


    first thing i would try is a 'GO' statement after your 'use' statement.

    correct sytax would be

    use [dbname]

    GO

    exec [procname]

    but i also think lowell's syntax works.

    let use know when and...

  • RE: calling stored procedure in a cursor

    Try three-part naming to reference your stored proc instead of USE. You may also have had an issue because you were not surrounding @tableName with single quotes in your proc...

  • RE: How many user can login at a time using asp.net application?

    MysteryJimbo (7/13/2011)


    opc.three (7/13/2011)


    MysteryJimbo (7/13/2011)


    Oddly enough, this isnt true and is something Microsoft dont really reveal.

    It is actually 32767 concurrent and running connections as its based on an smallint value but...

  • RE: After SQL Server Installation

    Here is the T-SQL command to change it to Mixed:

    USE [master]

    GO

    EXEC xp_instance_regwrite

    N'HKEY_LOCAL_MACHINE',

    N'Software\Microsoft\MSSQLServer\MSSQLServer',

    N'LoginMode',

    REG_DWORD,

    ...

  • RE: Processing XML Column in SSIS

    when doing it in T-SQL it is faster to loop through each row to get the XML than to include the NTEXT (Xml) column in the original query.

    I could see...

Viewing 15 posts - 5,521 through 5,535 (of 7,168 total)