Viewing 15 posts - 4,996 through 5,010 (of 5,103 total)
I have to add also that after microsoft realized that processing XML on the back end could not be as efficient as processing it in the middle tier they included...
December 3, 2003 at 10:09 am
can you print the resulting sqlvariable before executing it ?
December 3, 2003 at 10:01 am
I would not use a temp table if the final result is
Pupil 1, 6, Teacher A, Teacher B , ...
You Can construct the Teacher A, B, .. into One Column...
December 3, 2003 at 8:22 am
bcp uses a format file to handle schema configuration as long as you pass an appropriate format file in the command line it should be ok
December 2, 2003 at 9:36 pm
sorry I was not very clear. you should cross join students table with the Numbers Table (NO COLUMns are linked!!) the end result is the CARTESIAN product of both tables,...
December 2, 2003 at 9:19 pm
the reason for which the Mapped drives won't work is because sharing information is PROFILE related and the account you are using (SQL SERVER) is a SERVICE account so that...
December 2, 2003 at 8:50 pm
I have to admit that i like the tabbing idea but is going to be a little complicated is there are NULLs on the way and the number of columns...
December 1, 2003 at 10:24 pm
some bad news for you here sqlserver stardard or enterprise won't install on windows 2000 Pro!
you would have to use the developer edition just $50
HTH
December 1, 2003 at 9:45 pm
Make the Qry so that it maps a global variableto a parammeter like
Update tasble set x= 'a' where y = ?
then map ? to a global variable
AFTER...
December 1, 2003 at 9:08 pm
Actually you want to convert EACH record into 75 !
that is easylly accoplished with a Numbers table that contains numbers from 1 to 75
Select StudentID as Student,
...
December 1, 2003 at 8:46 pm
couple of suggestions:
First your code:
quote:
DECLARE@Count int,@ID intSELECT @ID = ID FROM MyTable WHERE blah, blah, blah...
December 1, 2003 at 8:21 pm
because the date part is missing Access is setting it as 1899-12-30 and sql will do the same using 1900-01-01
if you don't care about the date part just dont use...
December 1, 2003 at 8:06 pm
Sure just install connectivity only from the setup or mdac with the appropriate version!!
December 1, 2003 at 10:02 am
Viewing 15 posts - 4,996 through 5,010 (of 5,103 total)