Viewing 15 posts - 5,746 through 5,760 (of 6,216 total)
Good news, glad you got it resolved. Hope you'll continue to participate here.
Andy
October 8, 2001 at 7:41 am
This one is the best I've seen for all round coverage:
http://www1.fatbrain.com/asp/bookinfo/bookinfo.asp?theisbn=1861004486&vm=
Brian has a good book out (see the ad on our home page) and Steve Jones has one on certification...
October 8, 2001 at 7:39 am
Thanks for the follow up Jan - I'm sure future readers will appreciate it!
Andy
October 8, 2001 at 7:35 am
Thanks for all the comments so far! I have not tried Speed Ferret, but I do have a freeware add-in for VB that does much the same thing. David, I...
October 8, 2001 at 4:55 am
I think that you're using the ##table because of the scoping issues with exec(), right? I think you're having your locking issues because exec() does run in a different scope,...
October 7, 2001 at 2:42 pm
That code gives me a headache. I think you're doing a lot of work just to make sure there are no gaps in the sequence. While I think your code...
October 6, 2001 at 6:07 am
Usually the best way to write to a file is with the file scripting object. Short sample:
set oFSO=createobject("scripting.filesystemobject")
Set oFile = fso.CreateTextFile("filename", False)
oFile.WriteLine "log something here"
Try http://www.msdn.microsoft.com/scripting for reference material.
Andy
...
October 5, 2001 at 5:23 pm
One other comment - this is one of those situations where using a uniqueidentifier for your primarykey is awesome, since you can generate the key on the client, not need...
October 5, 2001 at 5:18 pm
Michael,
So far none of us here at SQLServerCentral have much experience with Analysis - you're on your own for now! We're working on it, but it will take a while...
October 5, 2001 at 5:13 pm
The easiest way is just move all the *.mdf files out of your data folder. Then reinstall and verify all is running. Then copy your *.mdf back (excluding master, model,...
October 5, 2001 at 5:04 pm
If you're using ADO, take a look at the pessimistic locking options. Can be tricky and due to its nature won't scale as well as optimistic locking.
Having two users select...
October 5, 2001 at 5:02 pm
I think you mean something like an order and the associated order details? Yes, you can do it all in once procedure, though its not pretty. You have to pass...
October 5, 2001 at 7:38 am
Please do not post a question more than once - I am removing your duplicate posts. Thanks.
Andy
October 5, 2001 at 7:32 am
Couple notes.
1) No reason to do the initial select, I doubt you would want it a resultset returned to you.
2) For the insert, does it work if you run it...
October 5, 2001 at 7:31 am
Been a while since I used SQL 7, but we did do a upgrade from 1 to 2g at one point and saw immediate improvment (lack of memory was generating...
October 5, 2001 at 7:27 am
Viewing 15 posts - 5,746 through 5,760 (of 6,216 total)