Forum Replies Created

Viewing 15 posts - 1,096 through 1,110 (of 2,462 total)

  • RE: How to reduce the execution Time In Indexed T-SQL

    brainblower13 (3/3/2011)


    I know ,because of Indexed columns , its take long time of execution.

    why you think so ?

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: performance is on select query which use function

    Post the query along with table index definitions

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Table Scan vs. Clustered Index Scan

    these are the expected stats reason being .when we are calling every records (without any filer/where clause ) definitely Sql optimizer will go for table scan(or i would say clustered...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Doubt on local variables

    no you cannot set any value in global variable.there values are dependent on previous statement's execution status like @@rowcount,@@trancount,@@error etc

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Jobs running DTS packages suddenly stopped working

    Also try to give manual run to that SSIS package

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Jobs running DTS packages suddenly stopped working

    Dug Fazzani (3/3/2011)


    Hi,

    Yesterday our SQL Server (2008 R2) crashed whilst trying to Index a large table.

    This stopped people being able to connect to it.

    We restarted the SQL and SQL Agent...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Decide when to create Clustered & when non clustered Index

    JDBA-eqms (3/3/2011)


    hi,

    How & on what parameters we decide, Which index would be created on a column (Clustered or Non Clustered.)

    here is the link which can help you http://sqlinthewild.co.za/index.php/category/sql-server/indexes/

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Reorginize Index Task job on production is failing

    you can check it as i mentioned in my prior post

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Insufficient Memory issues

    Sachin Nandanwar (3/1/2011)


    Have you set Min and Max Memory settings for each instances ?

    No

    ?Is your box a 64 bit or a 32 bit ?

    no

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Reorginize Index Task job on production is failing

    Krasavita (2/28/2011)


    This is what I have

    reserved data index size unused

    63456 KB55072 KB7096 KB1288 KB

    also I don't see my...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: db size

    You can take help of linked server.

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Database Owner

    db_owner itself known as database owner.

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Xquery problem

    SQLkiwi (2/25/2011)


    DECLARE @XML XML

    ;

    SET @XML =

    N'<?xml version="1.0" encoding="utf-16"?>

    <Report

    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"

    ...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Tricky Query Needed

    Thanks LutzM , i have read that articles and got the solution .

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

  • RE: Tricky Query Needed

    i got solution for this but this is not nice one 🙁

    select * from

    (

    select

    english as [john_english],

    social as [john_social]

    from @t where name = 'john') a

    ,

    (select english as [Mary_english],

    ...

    -------Bhuvnesh----------
    I work only to learn Sql Server...though my company pays me for getting their stuff done;-)

Viewing 15 posts - 1,096 through 1,110 (of 2,462 total)