Forum Replies Created

Viewing 15 posts - 46 through 60 (of 172 total)

  • RE: Replace Character in the column

    UPDATE tblRegNo

    SET RegistrationNo = Replace(RegistrationNo, 'I', '1')

    WHERE RegistrationNo like '%I%'

    This is completed..

  • RE: T-SQL Parsing Crazy Eights

    It might be the silly question....but, why we are not able to display e ??

    select 1.a -- gives the column name a and prints 1 , which...

  • RE: Index Rebuild

    Awesome...Thank you very much for your help and patience...

  • RE: Index Rebuild

    yeah...exactly I got the same results as you told...in LIMITED, I returned only 1 row with page count 500000, index level = 0 and fragmentatoin is just .2% which is...

  • RE: Index Rebuild

    This is the result I m getting:

    ...

  • RE: Index Rebuild

    If I replace Detailed with LIMITED, I don't get any fragmented indexes....What does it mean?? we don't need to worry about this or what??

    Thank you

  • RE: Index Rebuild

    No it is not upgraded....it is SQL 2008 ....there are 8 indexes on that table. out of 8, I m getting 3 indexes showing around 50% fragmentation, 1 clustered and...

  • RE: Index Rebuild

    The table has 5 million records....But in dm_db_index_physical_stats, it shows page_count = 6 and record_count = 1503!! Is that sample data or am I missing something? I m using...

  • RE: advice on reindexing and resulting logfile growth

    Shrinking Database or just the log?? I think you can schedule a job to truncate and shrink the log file and take a full backup immediately...Just an idea, I don't...

  • RE: advice on reindexing and resulting logfile growth

    you don't need to rebuild the indexes of all the tables in a database....you can use a script to re-index the tables which have fragmentation >30% and reorganize the indexes...

  • RE: Backup and Restore on Replicated Database

    Thanks to both of you...

    @GURSETHI -- This is not regular, just 1 time task. We are bringing a new server to our production servers and we just created...

  • RE: Visible in SQL 2008

    I logged in as both sa login and Windows...I can't see them either...

    Thank you

  • RE: Visible in SQL 2008

    I didn't get that....

    But, Directly If I login to the server i couldn't see the tables....If I connect to that server from my local SSMS, I can see...

  • RE: Visible in SQL 2008

    Thanks for the quick reply....

    do we have to Restart the SQL Server??? I just refreshed, disconnected and reconnected to the server...none of the developers or DBA can see the...

  • RE: restoring a database without knowing the db file names

    If you want to know the files in the Backup, execute the following query...

    RESTORE FILELISTONLY FROM DISK = ' backupfilepath.bak'

Viewing 15 posts - 46 through 60 (of 172 total)