Forum Replies Created

Viewing 15 posts - 121 through 135 (of 206 total)

  • RE: Autogrowth % or specific value?

    You want to avoid growth in % for other reasons as well. When the db is small, say 50 MB, a 10% growth is minor. AS our newbie has discovered...

  • RE: forming a SQL statement for this scenario

    arun.samuel (3/6/2008)


    I am having startup problem trying to form this query. Any help would be

    appreciated.

    I have a 3 tables :

    1. tblCaseInfo with CaseID, ResolutionID

    2. tblSessions with CaseID, Location

    3....

  • RE: Login failures after 2005 upgrade

    Adam, when I encountered this problem it was not oprhaned users. We had been on SQL 2005 for 6 months when the problem arose. I wound up contacting MIcrosoft PSS...

  • RE: Database File Restricted

    Just curious, what is the "Max Size" set to?

  • RE: Track Reads and Writes

    You can run a profiler trace for a given period of time. The trace will include reads and writes and this data can be exported to a database. Be careful...

  • RE: Login failures after 2005 upgrade

    I ran into this issue too after upgrading to 2005 and then applying Windows SP2. It turns out that doing so enabled the "Enforce Password Policy" and other checkboxes. Check...

  • RE: Select top or ROWNUMBER?

    Yes, Coriolan, you can use the SET ROWCOUNT n to limit the rows returned. However, what you really need is some sort of paging similar to MySQL's limit function and...

  • RE: Database Recovery--Reason?

    1) Never perform maintenance (such as shrinking log files) during production hours.

    That said, if you were shrinking the log file when SQL Server restarted you are most likely encountering a...

  • RE: Finding the latest revision in data

    Jeff, I didn't mean to step on your toes and indicate that either of these scripts were different. I was speaking in general terms to let our Newbie know that...

  • RE: Finding the latest revision in data

    fvandenbosch (3/5/2008)


    Thanks all!

    Being a newbie at this I stand to learn something from each of your replies. No surprise that there are several ways to accomplish the task.

    You are...

  • RE: Finding the latest revision in data

    Without using a CTE this can be accomplished with the following...

    select uniqueID from t1 join

    ( select SN, max(RevisionNUmber) rn from group by SN ) v on

    v.SN...

  • RE: using a case statement with Where clause

    You can do this without a case statement. Try this...

    Where

    isnull( a.director, 1) = 1 or a.director = b.director

  • RE: Updating Local Table From Web Table

    Chris, look at replication in Books Online

    Dab

  • RE: Paging File:%Usage Peak is 100

    Yuri, why is the page file only set at 4 GB?

    It seems as though the OS is starved for memory at times (causing the 100% spikes). SQL may only be...

  • RE: Mysql to Sqlserver replication

    Sram, your best bet is to use some sort of load process (SSIS, openquery(), MySQLdump, etc. ). In conjuntion with the MySQL 3.51 conncetor http://dev.mysql.com/downloads/connector/odbc/3.51.html[/] you can use openquery() to...

Viewing 15 posts - 121 through 135 (of 206 total)