Forum Replies Created

Viewing 15 posts - 1,126 through 1,140 (of 1,219 total)

  • RE: management studio

    newbieuser (7/16/2013)


    When I run SQLManagementStudio_x86_ENU.exe, I get the error message 'The Operating system on this computer does ot meet the minimum requirements for SQL Server 2012...' I did download...

  • RE: NETWORK SERVICE cant read system view

    Put the statement in a stored procedure or user-defined functon. Sign the module with a certificate in master. Create login from the certificate and grant that login VIEW SERVER STATE....

  • RE: Execution Plan Incomplete

    Why on Earth would you want to see the execution plan for that horrible procedure? When you have a loop, there will be plan for execution of a statement, and...

  • RE: Reason for dropping TEXT, IMAGE data types

    From where do you have information that SQL 2014 would not support text/ntext/image? They certainly work in CTP1, and there is no information in Books Online, saying that they will...

  • RE: Deadlock via SELECT INTO query getting a SIU lock

    That sounds a little funny. But are those the complete statements? That is, there are no WHERE clauses?

  • RE: Insert bulk failed due to a schema change of the target table.

    When 15000 rows have been loaded, someone trips on the network wire and the client is disconnected. With no BatchSize set, all 15000 rows are rolled back. With a batch...

  • RE: Truncating data on a remote Server

    imransi17 (2013-07-16)


    Thank you for the try but it gave me the following error 🙂

    similar to the on earlier...

    The name RemoteServerName.DatabaseName.DBO.sys.sp_executesql is not a valid identifier

    To whom was that in reply...

  • RE: Insert bulk failed due to a schema change of the target table.

    You need bitwise or, that is the | operator, if remember the C# syntax correctly.

    Then again, if there are queries running against the table, while your loading, they will be...

  • RE: yikes

    Could be lots of things. For instance excessive compilation because of non-parameterised statements.

    What does "SELECT @@version" report?

  • RE: Truncating data on a remote Server

    If I understand correctly what you want:

    DECLARE @sp_executesql nvarchar(1000)

    DECLARE @sql nvarchar(MAX)

    SELECT @sp_executesql =

    quotename(@server) + '.' + quotename(@db) + '.sys.sp_executesql'

    SELECT @sql = 'TRUNCATE TABLE ' +...

  • RE: New kid on the block

    Koen Verbeeck (2013-07-15)


    SSIS is completely renewed, introduction of SSAS tabular and Power View, columnstore indexes, AlwaysOn Availability Groups, ...

    OK, there is try_convert() too. As for improvements to SSIS or SSAS,...

  • RE: Insert bulk failed due to a schema change of the target table.

    haiao2000 (2013-07-15)


    I think you are absolutely right, especially on #4, I know for the fact that our application has some built-in auto index feature that checks the table periodically and...

  • RE: management studio

    newbieuser (2013-07-15)


    A network related or instance-specific error occurred while establishing a connection to SQL Server.The server was not found or accessible....

    This has nothing to do with the versions of...

  • RE: Drop a database user on a linked server.

    Very good correct Lowell!

    Here's one that is slicker:

    EXEC LinkedServer.yourdb.sys.sp_executesql N'DROP USER myuser'

    Not the least is this one slick, if any of the items are variable:

    DECLARE @sp_executesql nvarchar(1024) =

    ...

  • RE: New kid on the block

    Jo Pattyn (2013-07-15)


    Welcome Erland,

    About sql 2012, it is fairly new

    It's been out for over a year...

    and above all had its licensing changed (cores instead of cpu's)

    Yes, the changed licensing...

Viewing 15 posts - 1,126 through 1,140 (of 1,219 total)