Forum Replies Created

Viewing 15 posts - 1,951 through 1,965 (of 6,486 total)

  • RE: License Downgrade Then Upgrade to Original License

    As with just about anything licensing related - I would advise you call the Product Services line to confirm.

    That being said - per the "how to Buy" FAQ (this is...

  • RE: How to call a stored procedure in sql server 2005 from sql server 2000

    You might care to look at OPENQUERY over a linked server connection. OPENQUERY will "send" the execution to the remote 2005 server, and bring back the output.

  • RE: Cross Apply

    I can't help but thinking that cross applying an aggregate query has got to be murder (especially an aggregate query CROSS JOINED to yet another aggregate query, and then pollenated...

  • RE: Automation fun

    Actually - SQL 2005 is smart enough to be able to do query-level recompiles. So - if your procedure does a bunch of things, one of which happens to...

  • RE: Select string truncation problem!

    Two smallish comments:

    - the PRINT may truncate the output, but executing the variable should execute the whole thing.

    - You'd be better off using NVARCHAR, since both EXEC and...

  • RE: Access form calling a stored procedure

    Your best bet is going to read up on using the ADO command object. It's by far the easiest way to execute a remote SP from a traditional MDB...

  • RE: Bad password hash - plausible???

    That's the thing about a hash function. They're usually functions that even if known are very difficult to reverse. It's not a reversible thing (it's technically not encryption,...

  • RE: Duplicate INSERTs

    Do you have code in your .NET code to disable the submit button on click? Could it just be someone double-clicking the button/resubmitting whatever they're doing?

    Your stored proc makes no...

  • RE: Bad password hash - plausible???

    What I'm trying to get at is someone somewhere is trying to validate the password during login. The most common way to do this is to use the same...

  • RE: Linked tables to SQL SERVER??????

    Just be sure NOT to ignore any of the prompts you might get about "show my the primary key/unique value combination" (I must admit to not remembering what the actual...

  • RE: Linked tables to SQL SERVER??????

    Look for the Linked Table manager within the Access DB. Should allow you to redirect "regular" linked tables, assuming nothing in the code is updating them (there were various...

  • RE: Bad password hash - plausible???

    What are you using to check the hash code? There were some undocumented procedures floating around on how to do that, but those have been notoriously "flaky" since the...

  • RE: The transaction log for database is full

    The question in my mind is - why limit the T-log size? If you happen to have a large table, then that alone could be killing your t-log space.

    Also...

  • RE: Evaluating String Arithmetic Expressions in SQL Server 2005

    RBarryYoung (2/23/2009)


    Yeah, they tend to say that because Microsoft says it. But Microsoft never explains why they say it, except as part of the general "Surface Area" security policy....

  • RE: Double pass through query

    You're also going to need to make sure that your security mapping is correct (meaning - the SQL user being used to do the work from Access needs to be...

Viewing 15 posts - 1,951 through 1,965 (of 6,486 total)