Forum Replies Created

Viewing 15 posts - 61 through 75 (of 80 total)

  • RE: add space to database

    Perry Whittle (10/16/2012)


    Really need to get an idea of the current file sizes, post the results of this please run against your database

    USE YourDB

    GO

    selectname

    , size / 128 AS FileSize

    , case...

  • RE: add space to database

    george sibbald (10/16/2012)


    correct. Restricted size needs to be >= to the size you want to increase to.

    Ok, so that means

    if i set up Initial size to 119.644 MB. then Restricted...

  • RE: add space to database

    george sibbald (10/16/2012)


    If autogrow is enabled for the database the file will grow automatically when it fills anyway, but best practice is to pre-empt thipreemptng manually. Make sure any autogrowth...

  • RE: Query Help

    Hi Sean

    There is slight difference in requirement

    so the table and data as follows

    CREATE TABLE #TestDates

    (

    iSchoolYearCode int NOT NULL,

    dtStartDate DATETIME NOT NULL

    )

    insert into #TestDates values (2011,'2011-08-22 00:00:00.000')

    insert into #TestDates...

  • RE: Query Help

    Sean Lange (10/10/2012)


    yogi123 (10/10/2012)


    Sean Lange (10/10/2012)


    This looks a lot like homework. We don't typically provide answers for homework because we want you to learn.

    However, it seems you want the most...

  • RE: Query Help

    Sean Lange (10/10/2012)


    This looks a lot like homework. We don't typically provide answers for homework because we want you to learn.

    However, it seems you want the most recent date prior...

  • RE: Query Help

    capnhector (10/8/2012)


    Well i have an answer but im going to ask what have you tried?

    I got it

    DELETE temp

    FROM (

    SELECT

    ROW_NUMBER() OVER(PARTITION BY x.cStudentId,x.dtEnrollmentDate ORDER BY dtEnrollmentDate asc ) AS DSeq,

    x.*

    FROM...

  • RE: Query Help

    capnhector (10/8/2012)


    Well i have an answer but im going to ask what have you tried?

    so far, i did

    SELECT

    *

    FROM (

    SELECT

    ROW_NUMBER() OVER(PARTITION BY x.cStudentId,x.dtEnrollmentDate ORDER BY dtEnrollmentDate asc ) AS...

  • RE: T-SQL help

    Ray M (10/3/2012)


    Something like

    SELECT

    temp.cStudentId,

    temp.iSchoolCode,

    temp.cGradeCode,

    COUNT(1) AS iMemb,

    SUM(CASE WHEN temp.cAbsenceCode IN ('E','U') THEN 1 ELSE 0 END) AS Absences

    FROM (

    SELECT

    ROW_NUMBER() OVER(PARTITION BY x.cStudentId ORDER BY dtEnrollmentDate Desc ) AS DaySeq,

    x.*

    FROM...

  • RE: maintainance Plan job Fails

    GSquared (8/15/2012)


    You'll need to verify the command line parameters of the plan, as per the error.

    I Think

    command is fine

    /SQL "Maintenance Plans\MaintenancePlan"

    /SERVER "SERVERNAME"

    /CHECKPOINTING OFF

    /SET "\Package\Subplan_1.Disable";false

    /REPORTING...

  • RE: Reindex job fails

    yogi123 (8/2/2012)


    SQLRNNR (8/2/2012)


    If it runs successfully outside of the job, then we will need more info from the error output of the job. Output all job step history to...

  • RE: Reindex job fails

    Lowell (8/2/2012)


    the reindexing can be a huge operation; 1.5x the size of the indexes being rebuilt, as i seem to remember it. so the reindexing of a bunch of...

  • RE: Reindex job fails

    Lowell (8/2/2012)


    a post here by Gail Shaw(Gilamonster) says it might be the log has filled up on the database:

    http://www.sqlteam.com/forums/topic.asp?topic_id=132921

    Log backup successfully executed every 15 min everyday.

    so i guess log backup...

  • RE: Reindex job fails

    yogi123 (8/2/2012)


    SQLRNNR (8/2/2012)


    If it runs successfully outside of the job, then we will need more info from the error output of the job. Output all job step history to...

  • RE: Reindex job fails

    SQLRNNR (8/2/2012)


    If it runs successfully outside of the job, then we will need more info from the error output of the job. Output all job step history to a...

Viewing 15 posts - 61 through 75 (of 80 total)