Forum Replies Created

Viewing 15 posts - 1,471 through 1,485 (of 2,647 total)

  • RE: view which has select * won't pick up the new columns

    Since you know that the view will change definition and want it to pick up the changes, I would stick with the select * and add a refresh to whatever...

  • RE: how to desgin useful partition table

    1.how many paritions maybe get performance increase?

    You don't partition for performance, you partition for data management and because it makes sense logically.

    2.how many rows in each partiton?

    How much space do...

  • RE: NO SQL Server components should be installed on OS drive (C drive)

    Agreeing with the others... You can choose where the shared components, data files, logs, and backups go. After that, it will put everything where it needs to be. Sounds...

  • RE: Why can't user get into DB?

    hat's the user default database set to and the permissions to it?

  • RE: Databases on SSD

    Check out this thread.

  • RE: Databases on SSD

    Its a driver issue with the card. We purchased a set-up where the SSDs are mounted directly to the PCIe cards. It is configured as a RAID 5-0....

  • RE: Databases on SSD

    sjimmo (3/7/2012)


    Does anyone have any experience with putting databases/T-Logs on SSD's? We are playing with the idea of testing some different scenarios but I am looking for input from anyone...

  • RE: Transactional Replication Question

    When you create the subscription, it wall ask you if you want to initialize after you create the subscription. Make sure to say no here.

  • RE: Error converting varchar to Float

    Glad to help!

  • RE: Error converting varchar to Float

    When you alias the table as something like ter5, you have to make sure that is the alias used in the join (change ON ter.colname = sth.columnname to ON ter5.columnname...

  • RE: SSIS

    ramchandra2cool (3/7/2012)


    I tried both of them, you know the problem is the result is displaying for only one record. Can you tell me how to post my output as you...

  • RE: Multiple count() in a single SQL

    siva 20997 (3/6/2012)


    As I said before my background is from else where

    Can you explin to me what the stats shows ?

    It means that your method doubled the logical reads and...

  • RE: SSIS

    I also like avoiding unions if I can by inserting into a temp table or a table variable and then selecting from that. This seems to increase performance in...

  • RE: Multiple count() in a single SQL

    siva 20997 (3/6/2012)


    are you saying my method was faster even with the UNION ?

    Why are you obsessed with speed? Did you not see the reads and scans?

  • RE: SSIS

    ramchandra2cool (3/6/2012)


    How is that it is taking in SSMS only 9 secs. And when i place the same query in the SSIS it is taking more time to pull the...

Viewing 15 posts - 1,471 through 1,485 (of 2,647 total)