Forum Replies Created

Viewing 15 posts - 10,306 through 10,320 (of 22,213 total)

  • RE: Regarding indexed views

    A materialized view in SQL Server is a clustered index. This means that the data that defines the view will be stored within the view at the leaf level of...

  • RE: Plan Cache - Adhoc - Usecounts 1

    There is a setting called 'Optimize for Ad Hoc Workload' that could help you out. Instead of storing a plan each time a query is run, the first time it's...

  • RE: SQL SERVER on the laptop

    It's just like buying any other piece of hardware, the more money you spend, the better off you are. My current laptop is a MacBook Pro with 16gb of memory....

  • RE: Data compression

    PiMané (10/22/2012)


    Grant Fritchey (10/22/2012)


    But, you can get it if you need it from 3rd party products such as Red Gate SQL Storage Compress[/url].

    Thanks Grant... Still reading your book on query...

  • RE: design database

    harri.reddy (10/22/2012)


    well,

    they gave me some tables(approx 9) tables and field that they want to fecth only those field.

    they all r master table.so do i need to make table that connect...

  • RE: Deadlocks due bad fragmentation?

    sql-lover (10/22/2012)


    Grant Fritchey (10/22/2012)


    sql-lover (10/22/2012)


    I maybe wrong about this, but wanted to check or revise my own concepts.

    I thought deadlocks (most of them) were due poor or bad code; a...

  • RE: Deadlocks due bad fragmentation?

    sql-lover (10/22/2012)


    I maybe wrong about this, but wanted to check or revise my own concepts.

    I thought deadlocks (most of them) were due poor or bad code; a process pinning other...

  • RE: Stored Procedure Generator

    I used to use CodeSmith. But that was when they were hosted on CodePlex. It's moved to GoogleCode [/url]and I'm not sure it's the same. Still, might be worth checking...

  • RE: Data compression

    But, you can get it if you need it from 3rd party products such as Red Gate SQL Storage Compress[/url].

  • RE: design database

    They gave you fields & data lengths, cool. But are they defined as tables or as objects or just as interesting pieces of information that the business wants to see?...

  • RE: Good reference for Extended Events?

    And the godfather of Extended Events has an XEvent A Day series of blog posts. Jonathan is frequently a better resource for this stuff than Microsoft.

  • RE: Join

    You have to include the database name if the database resides on the same server:

    SELECT *

    FROM MyDatabase.MySchema.MyTable;

    That will get it done. You can then join on the appropriate column.

  • RE: Estimate Backup Size before backup strat

    Just know that the backup size is not just the data size. It also includes some header information (very small) and open transactions that are rolled forward or rolled back...

  • RE: DBA basic

    If you look to the left side of the screen there is a link there labeled "Stairways." That is a series of lesson plans on various aspects of becoming a...

  • RE: Titles & Taxonomies

    Yes, someone who achieves Senior should have special knowledge of parts of SQL Server and should be a go-to resource. I agree.

Viewing 15 posts - 10,306 through 10,320 (of 22,213 total)