Viewing 7 posts - 16 through 22 (of 22 total)
I looked at these and don't seem to be using the right options. The best I was able to do was 4.8GB.
November 1, 2004 at 4:25 pm
I had to got the MS support on this and basically you can use setspn to register the account
From BOL:
Adding an SPN to SQL Server
To add an SPN on...
October 21, 2004 at 4:27 pm
Thanks John,
This is alot more concise and does use the strength of a relational DB instead of the repetitive looping of simplistic code.
I appreciate your response.
October 8, 2004 at 9:19 am
I was able to figure it out. Here's what I used if you are interested:
DECLARE @TRACK as char(10)
DECLARE FBROW CURSOR FOR
SELECT FEEDBACK.TRACKING_ID FROM FEEDBACK WHERE FEEDBACK.STATUS = 'CLOSED'
OPEN FBROW
FETCH NEXT...
October 7, 2004 at 9:56 am
VBA Forum
Not exclusively VBA but a good source of info. Like one of the previous posters suggested using Excel Macro recorder is a good way to pick up some...
October 5, 2004 at 9:36 am
Perfect!
ISNULL was the option I was looking for, the same as an IIF in VB. I also did not know that you had to have the whole ISNULL phrase...
August 4, 2004 at 8:21 am
I have started bypassing Access when my end result is getting data into an Excel spreadsheet. Here is a bit of VBA code I put into an Excel template. The...
April 16, 2004 at 2:16 pm
Viewing 7 posts - 16 through 22 (of 22 total)