Forum Replies Created

Viewing 15 posts - 19,186 through 19,200 (of 26,490 total)

  • RE: Partation by Day in sql server 2005

    brij (8/14/2009)


    Thanks for reply but I guess u didn't understand my question

    I can create partition based on Month or day of the year. But I want partition based on...

  • RE: TEMPDB DATA AND LOG FILES

    You can actually find this in BOL (Books Online, the SQL Server Help System). You can access it from SSMS by pressing the {f1} function key.

    here is the relevant...

  • RE: retriving the list of the tables

    Actually, in SQL Server 2005 this may work faster:

    select

    t.[name] TableName,

    t.create_date,

    t.modify_date,

    sum(p.[rows]) RowCnt

    from

    ...

  • RE: Tracking deleted Rows

    hi_abhay78 (8/14/2009)


    Give me time till Monday (as its weekend) and your email address as I am on a location where there is no SQL Server (preparing documents to travel to...

  • RE: Summarize data in cross-tab format

    Not too hard, here is the code I came up:

    select

    Account,

    sum(case when Type = 'A' then Amount else 0 end) as TypeA,

    ...

  • RE: Who created a new job on my server

    hi_abhay78 (8/14/2009)


    Here is what you can do and you can always mail me for assistance during this time (hi_abhay78@yahoo.co.in).

    First create or modify a job and run profiler at the background...

  • RE: T SQL Commands

    No website required. You can get all of this from BOL (Books Online, the SQL Server Help System). You can access it from SSMS by pressing the {f1}...

  • RE: SQLServerCentral Editorial Policy - Article Publication

    Gift Peddie (8/14/2009)


    I think you may have missed the where clause in my LEFT JOIN example. All three of these queries will return the same result set. ie Customer records...

  • RE: parse a value from a field with commas

    There may be another solution as well. Could you please post the DDL for the tables involved (not just the ones in the procedure), sample data for the tables,...

  • RE: Multiple Cursor

    First, you may nneed a cursor. To really help you, we need your help. Please provide the DDL for the tables, sample data for the tables, expected results...

  • RE: Geographically dispersed DR for critical databases

    There are numerous ways this can be accomplished. You may want to google Geographically dispersed clusters. There is software that will allow you do to this, but it...

  • RE: Another Back up Question

    htt (8/13/2009)


    As soon as you perform a new full backup, you have reinstated the log chain and all transactions are being captured

    This is NOT always true. Couple of my...

  • RE: SQLServerCentral Editorial Policy - Article Publication

    Only speaking for myself here, but I think others may agree; for me to leave SSC the sense of Professional Community that currently exists would have to leave the site....

  • RE: For Each Loop Problem

    Let me think on that a bit. The first idea I had was to have you zip and upload the .dtsx package, but that may not work, even though...

  • RE: Another Back up Question

    htt (8/13/2009)


    Okay, here is a scenario for you.

    At 12:10 PM Wednesday afternoon your server crashes and corrrupts your database forcing a restore. You attempt to restore from the full backup...

Viewing 15 posts - 19,186 through 19,200 (of 26,490 total)