Forum Replies Created

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

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: concatenating question

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

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: providers when using linked servers

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

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • RE: concatenating question

    What specific version of SQL Server are you using?

    SELECT 'ProductVersion', SERVERPROPERTY('ProductVersion')

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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,

    ...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

  • 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...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

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

    walia_jagwinder (7/13/2011)


    is the 32767 users can login to sql server?

    What does this return on your server?

    SELECT @@MAX_CONNECTIONS ;

    You can also use this:

    EXEC sys.sp_configure

    @configname = 'user...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

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

    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 is generally...

    There are no special teachers of virtue, because virtue is taught by the whole community.
    --Plato

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