Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: Dynamic insert in stored proc

    dammit, I just realized that I missed the fact that the insert is attempting to execute in a different database even though the procedure is being run from the correct...

  • RE: Concatenating Addresses

    select isnull(cast(streetnumber as varchar(5)),'')

  • RE: The Bowling Challenge

    Based on where I work, I wouldn't expect anything. Not too sure what kind of constraint you could put onto the Scores table to enforce that the sum of...

  • RE: The Bowling Challenge

    two questions:

    1. should we compensate for incomplete games, or assume the games are always going to consist of 10 frames?

    2. do you want error checking/handling for invalid scores...

  • RE: Zipping file

    set @sourceFile = '\\networkname\filename.txt'

    set @archiveFile = '\\networkname\filename.zip'

    set @rar = '"C:\Program Files\WinRAR\rar.exe" a -df ' + @archiveFile + ' ' + @sourceFile

    set @sqlstate =

    'EXEC master.dbo.xp_cmdshell ''' + @rar + ''''

    exec...

  • RE: Missing integers from Excel

    quote:


    quote:


    It said that the first 8 lines are used for determining whether the...

Viewing 6 posts - 1 through 6 (of 6 total)