Forum Replies Created

Viewing 15 posts - 1,576 through 1,590 (of 2,267 total)

  • RE: Multiple independent databases in single server for same application

    Ahmad Osama (2/5/2009)


    5 clients to start with..Is there any other way to handle this scenario.....

    I would use 5 seperate databases, rather than instances..

    What problems do you expect with one database...

  • RE: Correct way to truncate transaction log

    Ahmad Osama (2/5/2009)


    GilaMonster (2/5/2009)


    Ahmad Osama (2/5/2009)


    GilaMonster (2/4/2009)


    Why do you want to truncate and/or shrink your transaction log?

    I have a job to rebuild indexes..this increases the transaction log size....so i...

  • RE: Conversion failed when converting the varchar int

    Okay Thanks,

    Without updating the code or updating the data then there is not really much that can be easily done..

  • RE: SQL Server 2005 performance degrades dramatically over the time.

    toni.sala (2/5/2009)


    Hello,

    We're using SQL Server 2005 as a Microsoft Business Solutions Navision Data Server and we're experiencing several performance problems that we solve in 2 ways:

    1) Rebooting the server. We've...

  • RE: Conversion failed when converting the varchar int

    '5.0' will not convert to an integer as it can not interpret the '.0' part, since INT can't handle decimals. Try using Numeric data type but this...

  • RE: Best practices to backup things up

    Make sure you also include log file backups

  • RE: COMPLEX DISTINCT QUERY

    okay then you add this with a aggregate funciton in the select clause

    SELECT

    CL.ClientID,

    GS.CodeDescription AS Specialty,

    MAX(AAP.AppointmentDate) as MaxAppointmentDate

    FROM

    ...

  • RE: slow performance

    Is it only the posted query that is slow, or all queries?

    Are you able to post the Actual Execution plan rather than the estimated one?

  • RE: COMPLEX DISTINCT QUERY

    For the values that are repeating over the rows, such as referral source and speciality then you just add these to the select statement and group by clause.

    But for...

  • RE: COMPLEX DISTINCT QUERY

    SELECT

    CL.ClientID,

    GS.CodeDescription AS Specialty

    FROM

    AMSAppointment AAP INNER JOIN AMSAppointmentContact APC

    ON APC.SequenceID =...

  • RE: COMPLEX DISTINCT QUERY

    So you want to group by the ClientId and CodeDescription

    Out of the other columns, which ones have values that are not distinct?

    Or post a sample of the output of the...

  • RE: COMPLEX DISTINCT QUERY

    select Distinct

    or use Group by and Aggregate functions on the required columns.

    if you want specific help then post the query and table structure..

  • RE: How to use my Variables?

    i haven't really used the file system task a lot so may not be much help.

    Checking if the file exits with a 'dir' command or something would be the best,...

  • RE: How to use my Variables?

    Were you using a Flat-File Connection ?

  • RE: How to use my Variables?

    In the file connection manager, click on properties and then click on expressions.

    Create an expression for connection string and use the expression builder to add your user variable adn...

Viewing 15 posts - 1,576 through 1,590 (of 2,267 total)