Forum Replies Created

Viewing 15 posts - 46 through 60 (of 89 total)

  • RE: address management software

    Can't recommend a product, but David Poole wrote an article on this topic recently, which you might find useful.

    http://www.sqlservercentral.com/columnists/dpoole/dealingwithaddresses.asp

    Maybe you could commission him for a nice bespoke number...

  • RE: Starting jobs from internet

    Sorry .. I see you reformulated your question slightly. I still reckon that Andy's solution was good though.

    If you want to restrict running the job to certain users, it...

  • RE: Starting jobs from internet

    I think you already posted this under:

    "Job execution from asp page"

    and a good answer was given.

    "Insert a row into a table, have your job poll that table, when it finds...

  • RE: The Best of SQLServerCentral.com 2002 - We Did It!

    Well done on completing what must have been a very difficult task.

    I hope it is a great success.

  • RE: PetCo.com Vulnerable to SQL Injection

    quote:


    In the case of my client they have chosen Barclays bank so this means that all credit card details are handled by...

  • RE: PetCo.com Vulnerable to SQL Injection

    Steve, I agree with you *in priniciple*, especially if you have come across security

    bug by chance -- although I don't think I can match your humility 🙂

    However, I found Brian's...

  • RE: PetCo.com Vulnerable to SQL Injection

    >>(hacker) ..It used to be a revered term.

    Still is where I'm standing 🙂

    >>It's actually a question of motive:

    >>Security Researcher - looks for

    >> vulnerabilities, is generally responsible

    >> about reporting them to...

  • RE: How do you get a DTS setup in ASP

    If you mean execute a VB DTS package from an ASP page then you could compile the VB DTS package as a dll, and then reference and execute it from...

  • RE: Adding IDENTITY field to large table

    not an ideal solution, but a more long winded approach would be:

    --create a new, empty table copied from the original table structure

    --add the identity field to this new table

    --copy all...

  • RE: Table recreation via script

    You might want to

    a) copy the tables (schema+data) to a temp database (maybe use DTS)

    b) back that temp database up

    c) send the .bak file to your production servers

    d) restore...

  • RE: Sorting, what would you do?

    I think guarddata has this wrapped up. Nevertheless, I'll make a brief case for option number 1, which as I understand it is:

    1) Do the selection query and insert...

  • RE: 6502

    Thanks for the replies and links. I was more of a BBC B man myself, but I'm sure all the machines you have mentioned were just as dear to your...

  • RE: VBScript command-line performance question

    As long as you are committing in small batches - as Steve suggests - there may be some benefit to setting a recovery mode of "Simple" on your target database...

  • RE: Email problem

    >>Essentially, from the time accident info is logged to the system, supervisor has

    >> 24 hours to respond, safety officer has 48hours and deputy has

    >>72 hours to respond.

    That's not the...

  • RE: UpDate using T-SQL

    >>With ADO, I guess that you are building the update statement on the client.

    In DAO you can do something like this to a recordset object.

    rst.edit

    rst.fields("Name")="Bungle"

    rst.fields("SexualOrientation")="n/a"

    ...

    ...

    rst.update

    I'm pretty sure it's the same...

Viewing 15 posts - 46 through 60 (of 89 total)