Viewing 15 posts - 6,181 through 6,195 (of 6,215 total)
Thats where NTFS comes in. No need for a user to have direct access to the mdf's.
Andy
July 13, 2001 at 6:42 pm
Then you should look at approles - perfect for the situation you describe. Kudo's to Brian K for asking the right question!
Andy
July 13, 2001 at 6:40 am
CDO does support this from what I can find on MSDN using a configuration object. Have to admit Im not entirely clear on the differences between CDO and CDONTS! Still,...
July 12, 2001 at 6:29 pm
Restricting access using NTFS permissions is important too. They should not have direct access, only via the db engine.
Andy
July 12, 2001 at 6:27 pm
Click Tools, Options, then the results tab. Use the 'Results Output Format' dropdown. The default is column aligned, but you can change to tab delimited.
Andy
July 11, 2001 at 5:27 pm
Backup/restore is a good plan, log shipping more trouble than its worth for this change (and it essentially does the same thing anyway). The key is that you're going to...
July 11, 2001 at 3:48 pm
Im definitely against any data type desc in the column name. Where I work, we have an app that uses "foreignkey" for all the foreignkey cols. Guess what it calls...
July 11, 2001 at 6:33 am
Not directly. The only way to keep them out would be to set the db to either dbo only or single user mode, or you could temporarily change their permissions...
July 11, 2001 at 6:28 am
Connection pooling and/or object pooling may be the issue here. I havent had any problems with @@rowcount (have you checked MSDN to be sure though?). I would suggest you test...
July 11, 2001 at 6:26 am
Do you know the stored proc is executing for sure? How about adding some logging to the proc so you can see if it's running and what value was passed?
Andy
...
July 10, 2001 at 10:26 pm
Couple questions. How do you get an int to hold that value? The max value is 2,147,483,648 (or (214) 748-3648 as a phone number!) Another question is why did you...
July 10, 2001 at 10:23 pm
Easiest way would be to run Profiler while you create the package, that should give you the list without too much work!
Andy
July 10, 2001 at 10:13 pm
Honestly I dont know:-) I think the package will run ok, the question is how will the data look. You might want to pull some data out of the db...
July 10, 2001 at 2:10 pm
Im not sure I agree with a separate drive for the pagefile. I know it's recommended, but if you're even close to properly configured, you shouldnt be hitting the page...
July 10, 2001 at 11:04 am
They should all execute independently, assuming that running one doesn't cause another to be blocked by locking of the data. Not impossible, but I think 1000 at once would be...
July 10, 2001 at 11:01 am
Viewing 15 posts - 6,181 through 6,195 (of 6,215 total)