Forum Replies Created

Viewing 15 posts - 2,506 through 2,520 (of 3,482 total)

  • RE: Unused,duplicate indexes

    Brent Ozar's BlitzIndex[/url]

  • RE: Contiguous time slots

    Please read this article[/url] and follow the instructions.

    Well, unless you don't really care about getting help.

  • RE: How to correct this?

    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...

  • RE: use visual studio to load data to sql server 2012

    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...

  • RE: Create SSRS reports on my Workstation

    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...)

  • RE: Load access 2013 data into sql server 2012

    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...

  • RE: Here are some SQL Server Interview Questions

    Best milkshakes ever. I don't like that boss very much.

  • RE: MCSA 70-461 Question

    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!

  • RE: MCSA 70-461 Question

    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...

  • RE: Running totals for previous X days

    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...

  • RE: Pivot - dynamic columns

    "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...

  • RE: Fetch the last run time

    If you have no other option, grab all the data, dump it to a temporary table, then remove any data you don't want.

  • RE: SQl help please

    One option...

    SELECT *

    FROM tbl

    WHERE Change_Capture_Code !='00550'

    AND Change_Capture_Code NOT BETWEEN '00560' AND '00580';

  • RE: Index on calculated field with UDF?

    maybe add another column to your table and set its value in the stored procedure that adds the record.

  • RE: TRUNCATING MULTIPLE TABLES

    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...

Viewing 15 posts - 2,506 through 2,520 (of 3,482 total)