Forum Replies Created

Viewing 15 posts - 2,071 through 2,085 (of 7,429 total)

  • RE: Get Data From Corrupted Table

    If not then you will have to do a restore of the last good full backup and then apply TL log backups if you have them (which if set to...

  • RE: CAN SOMEONE EXPLAIN TLOG MECHANICS (GROWTH, SHRINKAGE) ???

    I always thought BOL in that article was fairly straight forward personally. However, could you post what you were told for anyone else looking for a similar explination it will...

  • RE: Week in month

    With regards to dates 0 is 1/1/1900.

    1) Yes to an extent you can subtract from 0.

    2) 1250 represent the number of mon ths that have occurred since 1/1/1900.

    So by...

  • RE: Backup Striping

    Yes that is right. The reason is only one thread at a time can be processed per processor (except with hyperthreaded cpu's) so for each to run the CPU has...

  • RE: Dropping temp tables (when they dont want to drop themselves)

    This is the best way. I see a lot of folks do a look in sysobjects for the temp table name but if on another connection the name is in...

  • RE: Upgrade Scripts

    http://www.adeptSQL.com

    http://www.apexsql.com

    http://www.red-gate.com

     

    all have tools that can compare DBs for differences and produce scripts.

  • RE: Oracle to SQL Server

    Try

     

    amount = datalength(tblname.field)

  • RE: Backup Striping

    here this should help

    backup database northwind

    to disk='c:\n1.bak', disk='c:\n2.bak'

    with init, name='test'

  • RE: GROUPING QUERY

    Glad to hear, I was just banging my head on FoxPro there.

  • RE: GROUPING QUERY

    I don't use FoxPro myself but can you post the few lines before and after this so I can see if I can figure it out? Otherwise Stored Procedure may...

  • RE: GROUPING QUERY

    Try my query in QA and see if it works. If does then it may be another foxpro limitation you hit. I would then consider wrapping logic in SP and...

  • RE: Inserts into text fields truncated?

    You don't have any words in you error statement such as

     

    DON'T

    HAVEN'T

    HASN'T

    or other ' containing word do you?

     

    And what laguage are you using to write the errors to the ODBC connection?...

  • RE: GROUPING QUERY

    Because of the way exists works with regards to each record entering the buffer it will take a long time on large datasets.

  • RE: GROUPING QUERY

    DId it say where the error was as I am working on notepad not QA right now and no test system here.

  • RE: GROUPING QUERY

    Sure first the subquery

      SELECT

       x2.master,

       x2.type t1,

       x3.type t2

      FROM

       tblX x2

      INNER JOIN

       tblX x3

      ON

       x2.master = x3.master

      WHERE

       x2.type = 'avail' and

       x3.type = 'oper'

     

    Here I am join all master...

Viewing 15 posts - 2,071 through 2,085 (of 7,429 total)