Forum Replies Created

Viewing 15 posts - 2,836 through 2,850 (of 3,396 total)

  • RE: how to check data with in range in fdate and tdate in sql server

    If you post proper CREATE TABLE scripts and INSERT scripts to populate your table(s), you will probably get an answer...

  • RE: Get next 2 weeks

    What do (Name, Project, Date) represent? Some event? If you explain that part, we can help you sort out the design of your table. (As Jeff mentioned, are you...

  • RE: MERGE Statement MULTIPLE INSERT into different tables

    Problem:

    -> I'm checking if the record exist in Contact table or not. If it exist then I will insert into employee table else I will insert into contact table then...

  • RE: Get next 2 weeks

    I vote for normalizing too... then this query becomes trivial. Been down the unnormalized path once before and it was not a place I want to go again. ...

  • RE: Insert Data into Access

    The way I used to do it was to pull it from SQL Server using Access, but if you can push it from SQL Server, you can create a job...

  • RE: Insert Data into Access

    How do you retrieve the data in SQL Server that you want? And how often do you need to insert it?

  • RE: Insert Data into Access

    What if you pull (from Access) instead of push (from SQL Server)? The easiest way, if it's a one-off, might be to create a stored procedure and run it...

  • RE: Insert sequence number

    What's totally odd is that MS does that with their examples of CTEs - all of them begin with a semi-colon, which was really weird to me. Gotta love...

  • RE: XML Import into multiple tables with data translation

    Sounds like a good time to use Integration Services. If you created a package, you could then use SQL Agent to run the package you created on some interval...

  • RE: Remove Null checkbox in SSRS

    If you disallow nulls, the checkbox will not be displayed. But you want to allow nulls but still hide it, right?

  • RE: Distinct and count

    I need to count the number of times the supplier name is used but only display each supplier name once.

    If you imported this from Access, you probably have some...

  • RE: Manager and Employee Hierarchy

    so if you create the standard hierarchy and get a level, filter for the difference in Levels = 2 for the non-CEO types, and for the CEO, set the levels...

  • RE: Checkbox select/Deselect records

    I don't think you can do that in a report. I would think you would need something like a .NET GUI to do that, because SSRS generates a read-only...

  • RE: Data modeling

    TG-

    I learned to do it by using a big whiteboard. If you need to test your designs by loading some data and then trying to query, you could use SQL...

  • RE: Frustrated with Matrix Report

    Eliza,

    <cheat sheet>Region | Yr1 - Sales | Yr2 - Sales | Yr3 - Sales | Yr1 - Numbers | Yr2 Numbers | Yr3 - Numbers

    What if you had a tablix...

Viewing 15 posts - 2,836 through 2,850 (of 3,396 total)