Forum Replies Created

Viewing 15 posts - 47,026 through 47,040 (of 49,552 total)

  • RE: trigger not called for each record?

    Andre T (3/31/2008)


    Ahh, I must be confused with Oracle which would make sense.

    The big picture is a bit complicated. I certainly realize set based is better but this...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Query Building Tips (Need Them!)

    It specified on what columns the join is done.

    Same as for a normal inner/outer join between two tables:

    FROM Itable1 INNER JOIN Table2 On Table1.Col1 = Table2.Col2

    Just in this case it's...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: I/O error (torn page) detected during read

    Any backup you've made since the problem started will have the damaged page in and hence is useless for recovering from this.

    How long has this been going on? Why didn't...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: I/O error (torn page) detected during read

    When was your last database backup? Is the database in full recovery mode, and , if so, do you have the transaction log backups since the last full backup.

    How much...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Need help on small project from SQL professional

    mostar5 (3/31/2008)


    Anyone?

    Sure.

    Read what I wrote above. Help us with the table structures and sample data and someone will help you.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Problem with duration in profiler n query editor

    Statistics time outputs in milliseconds. Microseconds would be 'us'. (iirc)

    SQL Server Execution Times:

    CPU time = 32 ms, elapsed time = 180 ms.

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SQL 2005 Data corruption issue

    Hmmm....

    What OS are you running? Please confirm that the drive is using the NTFS file system

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Bachelors degree - Who has one, or even more education?

    I'll be 32 this year. I started the degree 2 years ago. Got another 2-3 years to go.

    I would suggest you sit down and take a look at the reasons...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: SQL 2005 Data corruption issue

    Anshu Wadhwa (3/31/2008)


    There's no such encryption/decryption software on our server , no space issues either...What else can be the problem ..?

    I take it you have a similar problem.

    Can you post...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Database Locks

    Ignacio A. Salom Rangel (3/30/2008)


    GilaMonster (2/13/2008)


    What does the update statement do?

    Can it be optimised to take less time? Can the indexes be tweaked so that it doesn't have to...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: are there "arrays" in sql 2005 ?

    The date time problem's easy to fix. The variables need to be converted to string to concat them with the rest of the query. They also need to be wrapped...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Transfer data from sql server to DBISAM database

    I'm not familiar with DBISAM. Can you create a linked server from the SQL Server to the DBISAM? If so, you may be able to use triggers on the staff...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Transfer data from SQL server database to DBISAM

    Posting 6 identical messages is not necessary. It wastes people's time and fragments replies.

    Many of us read all the forums.

    Please don not reply to this thread, but direct comments to...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: Problem with duration in profiler n query editor

    The profiler Gui will show duration in either milliseconds or microseconds, depending how the option is set (tools -> Options) However it will store the duration as microseconds and, if...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass
  • RE: MSSQL 2000 and MSSQL2005

    Standard edition will install on XP, so I don't know what's wrong.

    Open the Services (under administrative tools) and see if you have any services with names like

    SQL Server (MSSQLSERVER)

    Or

    SQL...

    Gail Shaw
    Microsoft Certified Master: SQL Server, MVP, M.Sc (Comp Sci)
    SQL In The Wild: Discussions on DB performance with occasional diversions into recoverability

    We walk in the dark places no others will enter
    We stand on the bridge and no one may pass

Viewing 15 posts - 47,026 through 47,040 (of 49,552 total)