Forum Replies Created

Viewing 15 posts - 691 through 705 (of 2,463 total)

  • RE: FULL text search

    Is "SEARCH PROPERTY LIST " feature available before sql 2012 ? and can it be used in sql table too ?

  • RE: To drop all tables from a database

    arthi.anan (12/13/2012)


    My database name is Serv and I have 150 tables and 200 procedures...

    How would i give it in this query...

    Can u please make me clear

    you dont need to...

  • RE: To drop all tables from a database

    arthi.anan (12/13/2012)


    I need a query to drop all tables and stored procedures from a database

    First of all , take backup of this database you never know what and when...

  • RE: FULL text search

    1 - How does stop lists improve fulltext query performance in SQL Server 2008 (or it does not)? Is it a good idea to have stop lists assign to all...

  • RE: delete top(8000) takes 1 second, delete top(9000) takes 42 seconds !!

    david.moule (12/13/2012)


    Only when I try "top(900,000)" does it go back to index scan. But still does not give a parallelism node 🙂

    NOt always parallelism is bad , sometimes...

  • RE: FULL text search

    i got the correct query

    select * from [Person].[Person_BK] where

    contains([Name], '*ASDGDE* OR *AFASFA*')

    it had happened as i had missed the mandate homework 😀

  • RE: FULL text search

    during my testing or learning on Full text search , i found below queries are returning different results .can you please guide me why

    select [BusinessEntityID] , [Name] from [Person].[Person_BK]

    where...

  • RE: IDENTITY INSERT

    i chose the wrong option but learned the RIGHT answer:-D

  • RE: SQL MIrroring

    dbasql79 (12/13/2012)


    Also edition of mirrored server plays a significant role when it comes to synchrnoization.Enterprise editon will use "Parallel redo" using more threads available to mirroring session If you have...

  • RE: Deadlock on stored procedure

    shd.eftekhari (12/12/2012)


    Thank you for your response but the most important issue for me is deadlock scope. do you also have any idea about this?

    Sorry i dont have but

    have...

  • RE: Deadlock on stored procedure

    shd.eftekhari (12/12/2012)


    the index is in one of sub queries of child SP and I ma wondering that this table and row has not locked any where else except the last...

  • RE: delete top(8000) takes 1 second, delete top(9000) takes 42 seconds !!

    david.moule (12/12/2012)


    The code is running in production - which I inherited. But I will be able to change it if it makes it run better.

    three things you need...

  • RE: Deadlock on stored procedure

    shd.eftekhari (12/12/2012)


    I have a stored procedure(parent) which include to many if cases and in each case calls another stored procedure (child).

    In child SP I have a transaction with more than...

  • RE: Reduce database size

    Eric M Russell (12/12/2012)


    You may only need to do this once after each restore from production.

    + 1

  • RE: Column restriction

    you can maintain the column's list in dtaabase and fetch with the help of additional parameter (says reportID ) in stored proc. see below

    table defintion (ColumnID, ColumnName , reportID)...

Viewing 15 posts - 691 through 705 (of 2,463 total)