Viewing 15 posts - 1,951 through 1,965 (of 6,486 total)
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...
February 25, 2009 at 2:23 pm
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.
February 25, 2009 at 1:35 pm
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...
February 24, 2009 at 3:08 pm
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...
February 24, 2009 at 10:51 am
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...
February 24, 2009 at 9:58 am
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...
February 24, 2009 at 9:52 am
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,...
February 23, 2009 at 8:33 pm
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...
February 23, 2009 at 3:30 pm
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...
February 23, 2009 at 3:21 pm
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...
February 23, 2009 at 3:05 pm
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...
February 23, 2009 at 3:03 pm
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...
February 23, 2009 at 2:55 pm
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...
February 23, 2009 at 2:45 pm
RBarryYoung (2/23/2009)
February 23, 2009 at 1:35 pm
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...
February 23, 2009 at 1:27 pm
Viewing 15 posts - 1,951 through 1,965 (of 6,486 total)