Forum Replies Created

Viewing 15 posts - 35,536 through 35,550 (of 49,557 total)

  • RE: Are the posted questions getting worse?

    CirquedeSQLeil (12/2/2009)


    just came across this ad:

    http://www.sqlservercentral.com/Forums/Topic716821-360-3.aspx

    You missed what happened over Thanksgiving weekend. On the friday that guy had posted to over 20 threads with exactly the same message, even threads...

  • RE: Searched Case execution

    'Private Insurance' is NOT one of the possible values for cval1.Control_Value1.

    Maybe not, but the 2nd branch of the case allows for 'Private Insurance' to be returned when Control_Value1 is NULL...

  • RE: Searched Case execution

    Why are there quotes around the -1? Is that column a varchar? If so, check for leading spaces.

  • RE: Log File runing.... Disk out of space

    atramard (12/2/2009)


    Are you sure this acctualy occur as my log file grew from ~500Mb to over 70Gb (in 3 h) and then another 4h later it had still not...

  • RE: Stored Procedures that converts a table's column data type from char to nchar and varchar to nvarchar

    rahulsony111 (12/2/2009)


    if i pass a table name like tablenew1 to the @tablename like 'EXECUTE usp_covertdatatype tablenew1'

    will the select statement selects the tablenew1?

    like 'select altertable tablenew1 alter column column'

    And will it...

  • RE: Multiline UDF

    oliver.morris (12/2/2009)


    PS - I am not trying to change the stucture of the data but simply filter a UDF based on a sp.

    Doesn't matter. For all SQL knows, that proc...

  • RE: Multiline UDF

    Turn it into a stored procedure?

    UDFs are not allowed to have side-effects (ie they may not change the structure of the database). Since procedures can, it would seem that a...

  • RE: Rebuild Index

    muthukkumaran (12/2/2009)


    Hi,

    Read & use the index de-fragmentation script added in my signature.

    Why does your script use deprecated objects (that will be removed in future versions) and global temp tables?

    Also, if...

  • RE: Rebuild Index

    Ali_SQLDBA (12/2/2009)


    Most of my tables are either clusterd or non clustered.

    Um, the distinction is clustered or heap. A nonclustered index is a separate structure and can sit on either...

  • RE: How to schedule a job for 7am and 7pm

    Give it two schedules. Schedule 1 - Daily at 7am. Schedule 2 - Daily at 7pm.

  • RE: Rebuild Index

    luckysql.kinda (12/2/2009)


    I want you to go ahead and remove the indexes which are referring LOB (text,ntext,image) and run rebuild again.

    Why?

    External fragmentation usually refers to file-level fragmentation that's fixed with a...

  • RE: Rebuild Index

    sqldba.jagan (12/2/2009)


    The tables in the database has varied page count. I think I have very few pages >=10 - <=25 and their frag ranges from 87.5 - 33.33.

    Don't even...

  • RE: Log File runing.... Disk out of space

    atramard (12/2/2009)


    So guys basicaly If your transaction log is as big as your disk allowed and the trasaction is not completed, there is not lot you can do as:

    - you...

  • RE: Table Building Query

    Paul_Harvey (12/2/2009)


    I have noticed that making a field mandatory and unique appears to crate an index. Is this correct?

    Making a field unique creates an index. The mandatory part has...

  • RE: My san disk is about to full and I can't add other database on it.

    Expose the LUN to the cluster, create a disk resource for it in cluster admin, make that resource a dependency of the SQL Service that will be using it.

Viewing 15 posts - 35,536 through 35,550 (of 49,557 total)