Viewing 15 posts - 2,536 through 2,550 (of 3,507 total)
create a whole bunch of linked SQL Server tables in your Access database.
Create queries to append the local table data to the backend SQL table.
then you could do something like
DBEngine(0)(0).Execute...
May 14, 2015 at 2:55 pm
Best milkshakes ever. I don't like that boss very much.
May 14, 2015 at 4:31 am
Jeff,
I would agree the MCM is a different beast. It's more realistic (and difficult) than the standard multiple choice tests. Even I can pass those!
May 13, 2015 at 8:49 pm
Certifications don't prove much, if anything. If I can get one, a trained monkey can.
There are several MVPs here in town (Joe, Dr SQL, Kevin...) and all of them have...
May 13, 2015 at 5:36 pm
How do you get from your raw data to the result?
SELECT 1,'A',15,11,CAST('5/13/2015' AS DATE) UNION ALL
SELECT 1,'A',15,8,CAST('5/12/2015' AS DATE) UNION ALL
SELECT 1,'A',15,3,CAST('5/11/2015' AS DATE) UNION ALL
I see where the first...
May 13, 2015 at 2:26 pm
"The first select is running fine but due to extra values added to the table the list of manual difined columns must be added manualy each time new values occur."
Simple...
May 12, 2015 at 1:55 am
If you have no other option, grab all the data, dump it to a temporary table, then remove any data you don't want.
May 11, 2015 at 9:59 pm
One option...
SELECT *
FROM tbl
WHERE Change_Capture_Code !='00550'
AND Change_Capture_Code NOT BETWEEN '00560' AND '00580';
May 11, 2015 at 1:55 pm
maybe add another column to your table and set its value in the stored procedure that adds the record.
May 11, 2015 at 12:05 pm
And then just to yank Jeff's chain, I'd throw in a cursor to loop over the tables and run the truncate statement on each one...
Yeah, just teasing, but I...
May 11, 2015 at 10:59 am
Unless something completely escaped me, you can't do paging in T-SQL. You do that in the presentation layer (Reporting Services).
May 10, 2015 at 8:02 pm
Maybe this is what you mean/need?
May 9, 2015 at 2:20 am
How absolutely up to date do you need your data? If you use caching, SSRS would load the report data once, and then used the cached data. ...
May 9, 2015 at 1:30 am
one option is to import into a staging table, then append the unique values to another table...
May 8, 2015 at 11:36 am
Amen to that.
There are the usually obvious cases where they should be avoided, but the cases where they're ideal is never really covered. It's like cursors are a bad word,...
May 7, 2015 at 6:11 pm
Viewing 15 posts - 2,536 through 2,550 (of 3,507 total)