Forum Replies Created

Viewing 3 posts - 1 through 4 (of 4 total)

  • RE: 9 Things to Do When You Inherit a Database

    Fire up Red Gates Dependency tracker to get a graphical representation of the db. Turn on trace. Check permissions to see who/ what is updating the db. ...

  • RE: Convert from Access to SQL

    Sum(IIf([dteDate]<Now(),IIf([intAbsenceType]<=2,0.5,IIf([intAbsenceType]=3,1,0)),0)) AS Taken, Sum(IIf([dteDate]<Now(),0,1)) AS Planned

    Use a Case Statement to resolve this complex iif statement. The case will take a condition when x then 5.

    Jason

  • RE: How do I pass a Value to a SQL 2005 Job?

    I use to have to do this when working with PeopleSoft SQR. We would dynamically create the .bat file. For example your file code could look like this:

    line...

Viewing 3 posts - 1 through 4 (of 4 total)