Forum Replies Created

Viewing 15 posts - 2,521 through 2,535 (of 3,500 total)

  • RE: How can I give permissions to specific schema only for a user?

    create another user, grant permissions, link user to login?

  • RE: Help with SSRS Matrix

    Not like this...

    SELECT ProblemType, IssueMonth, IssueYear, SUM(IssueCount) AS MonthlyIssueCount, CInt(IssueMonthNumber) AS IssueMonthNumber

    FROM qryIssueGroupedByYearAndMonth

    GROUP BY ProblemType, IssueMonth, IssueYear, IssueMonthNumber

    like...

  • RE: Help with SSRS Matrix

    Nothing to it. you need a calendar table for all the dates in your range. (Search around for articles, they're all over the place on here).

    Once you have...

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

Viewing 15 posts - 2,521 through 2,535 (of 3,500 total)