Forum Replies Created

Viewing 15 posts - 4,501 through 4,515 (of 4,820 total)

  • RE: Need help on performance and integrity

    Unfortunately, your example from several pages back conflicts with a statement by the OP that no range contains a duplicate, and your example starts out with one, unless he meant...

  • RE: Need help on performance and integrity

    I'm still waiting for a complete and unambiguous description of the problem, as well as a good description of exactly what real-world problem the solution to the query problem is...

  • RE: How to return 1 result from many records in a view?

    I'm not sure your data accurately reflects the real tables, but on the assumption that it does, then the following should help:

    --===== Create the test tables

    DECLARE @Company TABLE...

  • RE: Why a simple rename task won't work

    The text you've presented suggests you 1st delete a file and then want to rename it. If a file doesn't exist, how can you expect a rename...

  • RE: custom start day of week

    If the website will serve multiple companies, I would think that there would need to be a table containing company-specific data, and that each company could then have it's own...

  • RE: Fiscal Month...

    Ok, here's some code that will help. I take any given input date, determine it's fiscal year, and then generate a table of start and end dates for...

  • RE: Fiscal Month...

    It appears your fiscal year is NOT a consistent number of days, even accounting for leap years. In the case of FY2009, the fiscal year is 371...

  • RE: Exports to Excel

    A previous poster provided the solution, but I think you missed an important piece of it. Here's a more detailed perspective:

    1.) Create an empty spreadsheet as you would...

  • RE: To insert table of data into database through SP

    Assuming that you have a parameter in your stored procedure to receive the filename, something like what follows:

    SET ANSI_NULLS ON

    SET QUOTED_IDENTIFIER ON

    GO

    CREATE PROCEDURE dbo.spWHATEVER_YOU_CALL_IT (

    ...

  • RE: Need help on performance and integrity

    Example 1 in your "compromise solution" provides a result set consisting of RowID's 2, 9, & 10. Isn't RowID 5 supposed to be included?

    Also, we STILL don't have...

  • RE: Dangers of using MYSQL...What are they?

    Alec,

    I'm pretty sure I've never suggested that "O-S = rubbish". It's always been the arguments for it that were, most of the time. There's certainly nothing...

  • RE: Dangers of using MYSQL...What are they?

    It might be if not for the evidence I've seen that demonstrates that the vast bulk of arguments for O-S projects fell into the kinds of problem categories I've identified,...

  • RE: Dangers of using MYSQL...What are they?

    That sounds a lot like "the cost of learning new things is zero", because by NOT acknowledging those costs, it's EASY to recommend new things. I'm certainly not...

  • RE: Need help on performance and integrity

    I gave up on the solution I was working on, as I realized that the UPDATE statements I was using were unable to take into account the update it had...

  • RE: convert a varchar(4000) to a int !?

    To coin one of your phrases, YOWCH !!! ... at least in terms it getting bad enough to be meeting new people every day. Thank goodness it's not...

Viewing 15 posts - 4,501 through 4,515 (of 4,820 total)