Forum Replies Created

Viewing 15 posts - 1 through 15 (of 23 total)

  • RE: DTS Invalid Connection error.

    Hello,

    I did create it on my local machine. I went in and created it on the server and it works perfectly now, don't know why I did not think...

  • RE: DTS Invalid Connection error.

    Hello,

    Thanks for your reply. I've tried to execute the package from within EM, the command prompt and within a job but I get the same error. However it...

  • RE: DTS Invalid Connection error.

    Hello,

    Thanks Phill for your reply. I've logged onto the server itself to verify that the server can see the DB2 database through ODBC, indeed it can.

    Cheers,

    Chris

  • RE: Renaming a PC that SQL Server is on...

    Hello,

    Thanks for that. I was hoping for something a little less drawn out where by perhaps I could change the PC name in the master db and or the...

  • RE: Help, Select Distinct query.

    Hello,

    Well I do this a lot but soon after I posted the above request for assistance I figured out the issue. Thanks anyhow.

    Cheers,

    Chris Rutherford

  • RE: Tables Last Accessed...

    Hello,

    Thanks for your thoughts. I thought there would be some nice T-SQL to let me know when the table was last accessed without having to build up a history...

  • RE: Might be a simple error, I can't see it.

    Hello there,

    Sorry about this. It seems that every time I post here I figure out the answer a few minutes later no matter how long I've been trying to...

  • RE: Help - Select Statement....

    Hello,

    Never mind I have figured it out. Thanks Steve for the point in the right direction.

    Cheers,

    Chris

  • RE: Help - Select Statement....

    Hello,

    Well I've got a bit further but I'm still stuck. This is what I have...

    select Login.Date,

    Login.AgentName,

    Login.Timestamp as 'Login',

    (select timestamp from eagentloginstat where eventtype = 'LO' and agentname = login.agentname...

  • RE: Where Account IN (......)

    Oops, sorry, the computer kept prompting me to resend the information.

    Chris

  • RE: Where Account IN (......)

    You don't have leading or trailing spaces by any chance do you??

    select distinct ACCOUNTNO From ContSupp Where accountno not in

    (

    select distinct accountno from contsupp where ltrim(rtrim(rectype)) = ''E''

    )

    You could try...

  • RE: Where Account IN (......)

    You don't have leading or trailing spaces by any chance do you??

    select distinct ACCOUNTNO From ContSupp Where accountno not in

    (

    select distinct accountno from contsupp where ltrim(rtrim(rectype)) = ''E''

    )

    You could try...

  • RE: Where Account IN (......)

    You don't have leading or trailing spaces by any chance do you??

    select distinct ACCOUNTNO From ContSupp Where accountno not in

    (

    select distinct accountno from contsupp where ltrim(rtrim(rectype)) = ''E''

    )

    You could try...

  • RE: Help - Select Statement....

    Hello there.

    Well this is how far I got...

    select Login.Date,

    Login.AgentName

    from dbo.eAgentLoginStat as Login inner join dbo.eAgentLoginStat as Logout on

    Login.AgentName...

  • RE: Help - Select Statement....

    Hello,

    I've got this view in place at the moment...

    SELECT Date,

    AgentName,

    (SELECT MIN(timestamp) FROM dbo.eagentloginstat

    ...

Viewing 15 posts - 1 through 15 (of 23 total)