Forum Replies Created

Viewing 15 posts - 7,786 through 7,800 (of 9,643 total)

  • RE: Stored procedure inSSIS package

    I really want to help but I can't unless you answer these questions:

    • What are the table structures? Is this even close:
      users (userid, username, agencyname, sponsorname)

      agencies(agencyname, sponsorname)

      sponsors(sponsorname)

    • What are the relationships between...

  • RE: Performance Benchmarking: SELECT FOR XML vs customDataSet.GetXML() in .NET

    If you find anything interesting please post back here.

  • RE: Stored Procedure doing an inner join when should be doing left outer join in VB 2005

    You can also change the VB code to pass in nulls for those parameters, but what you are doing works.

    You don't mention if you corrected the issue(s) in the WHERE...

  • RE: Optional BEGIN...END keywords when creating procs

    GSquared (8/21/2008)


    I always thought of the procedure's beginning as the keyword "as" after the create statement and any parameters. Following "as" with "begin" always seemed redundant to me.

    This is...

  • RE: How to update based on case statement results?

    I wouldn't say that there is anything wrong with it. I'd do it something like this:

    [font="Courier New"]YEAR(GETDATE()) - YEAR(birthdate) - CASE  

                                           WHEN MONTH(GETDATE()) < MONTH(birthdate) THEN 1

                                           WHEN...

  • RE: Transferring Log backups to Mapped Network Drive

    Can you post the backup command you are running? Obviously you can change names if necessary.

    Also, what is the error you are getting?

  • RE: The Brainstorm Zone

    I have solved many problems by walking to a co-workers desk and asking them what they think and by the time I'm done explaining I have found a solution. ...

  • RE: sp_send_dbmail error

    That would make sense since Database Mail is smtp and SQL Mail used MAPI and was connected to your Exchange Server using Outlook.

  • RE: Transferring Log backups to Mapped Network Drive

    Assuming that you are scheduling these backups does the SQL Agent Service account have rights to the share?

  • RE: how to select middle row in table

    That's an interesting question because it depends on what you expect row 10 to be. SQL does not guarantee order unless you specify an ORDER BY. In most...

  • RE: SMTP Mail

    Here is the best way I have found to use smtp in SQL Server 7, 2000. Download, install, and use xp_smtp_sendmail. Here's the link:

    http://sqldev.net/xp/xpsmtp.htm

  • RE: Transferring Log backups to Mapped Network Drive

    To backup to the network you should use UNC paths (\\server\share) not mapped drives. Drives aren't mapped unless you are logged in to the console so SQL Server never...

  • RE: "ROLLBACK TRANSACTION" notification - SQL 2000 ?

    Why can't you run a server-side trace? The impact is minimal if you limit events and columns returned and put a filter on.

    You could also put a RaisError() with...

  • RE: SSIS job failing

    An OLE DB record is available. Source: "Microsoft SQL Native Client" Hresult: 0x80040E4D Description:

    "Login failed for user 'Sev1\STERM2$'

    I think that is the key line in the error...

  • RE: Software/Database Development Hiring Practices

    I don't disagree and I have read many posts/articles/editorials about these issues. The biggest problem is that hiring managers only see resumes AFTER HR has culled them based on...

  • Viewing 15 posts - 7,786 through 7,800 (of 9,643 total)