Viewing 15 posts - 2,506 through 2,520 (of 3,480 total)
the data type of schoolyear is nvarchar.
well, there's your problem. Convert it to an INT and you're good to go. (And for heaven's sake, fix all those stupid...
May 19, 2015 at 9:59 am
alternatively, you could push from within Access. created linked tables in Access to your SQL Server database(s). Create append queries that select data from the Access tables. Write a...
May 15, 2015 at 3:42 pm
there are a bunch of SSRS tutorials from super simple to reasonably complicated on YouTube... look up WiseOwl. Worked for me. (because you can watch, stop, try, watch...)
May 15, 2015 at 3:41 pm
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
Viewing 15 posts - 2,506 through 2,520 (of 3,480 total)