Viewing 15 posts - 1 through 15 (of 18 total)
Well we found an answer. We cannot make procedure calls to the Shadow driver, (you can however from the web I am told by our other developers). We...
April 23, 2007 at 1:05 pm
Just an update for any that get this same problem. I had to go back to the SQL 2005 disk and install the SSIS package onto my machine to...
November 30, 2006 at 10:03 am
Been there done that. Unfortunately, it does not work as easy as doing an IN if you are not using dynamic sql.
I appologize to the creator of this method, I...
May 4, 2004 at 1:32 pm
yes, the system is using stored procedures. I am using 2 varchar(8000) to pass in xml strings produced by a dataset. I will try the temp table and see what...
May 4, 2004 at 1:24 pm
thanks for the post. I guess it might help if I explained a little more, because maybe i am going about this all wrong. I have an vb.net object that...
May 4, 2004 at 7:27 am
good point. and actually to be completely correct, you would have to add year to that group by too. nice catch.
May 4, 2004 at 7:12 am
Try This
Declare @t1 table (
i datetime,
k varchar(5)
)
insert into @t1 (i, k) values (getDate(), 'Peter')
insert into @t1 (i, k) values (getDate(), 'Paul')
insert into @t1 (i, k) values (DateAdd(mi, 5, getDate()), 'Peter')
insert...
May 3, 2004 at 12:35 pm
Don't know if this is what you are looking for, but try this.
Declare @t1 table (
i datetime,
k varchar(5)
)
insert into @t1 (i, k) values (getDate(), 'Peter')
insert into @t1 (i, k) values...
May 3, 2004 at 10:43 am
I am a little confused by your answer. Would this use a cursor to loop through all of the values to insert and insert them one at a time? If...
May 3, 2004 at 10:17 am
This is so true!!! Especially the evangelist. What is worse, is I saw the same amount of the evangelist in school as I have in the workplace. If you even...
April 19, 2004 at 7:37 am
Sorry to take so long to post back, I have Work up to my ear. (Who hasn't). All I have to say is that March 5, 2004 at 2:08 pm
I would like to thank everyone for their advise. To answer the first question. We have custom Roles that have execute privaledges to the stored procedures. The user accounts are...
March 4, 2004 at 7:57 am
I would like to thank everyone for their advise. To answer the first question. We have custom Roles that have execute privaledges to the stored procedures. The user accounts are...
March 4, 2004 at 7:57 am
Thanks for the info. I have used the subquery with another table before, but I was just seeing if this was possible.
February 26, 2004 at 8:40 am
Viewing 15 posts - 1 through 15 (of 18 total)