Forum Replies Created

Viewing 15 posts - 1,081 through 1,095 (of 1,216 total)

  • RE: a little help needed for a programme

    In that case, I would really recommend setting up SQL mail. We are sending almost 100 different alerts and infomessages with it (many of them daily), covering just about anything that...

  • RE: executing adhoc query exceeding 8K bytes text size

    I just read a long and detailed description of how to solve similar problems with query criteria on http://www.sommarskog.se/index.html - I'm almost sure you will find your answer there - articles...

  • RE: a little help needed for a programme

    I just re-read your original post and explanation... maybe your only problem is to get the number of people to be contacted into the text? Well, then I would first...

  • RE: a little help needed for a programme

    Well, it is rather complicated to explain anything, not knowing your database, but hopefully this will set you on the right track:

    CREATE PROCEDURE mail_alert_contact AS

    DECLARE @Email Varchar(1024)

    EXECUTE GetEmailList 'mail_alert_contact', @Email...

  • RE: multiset??

    No, I never heard that there would be something like that in SQL Server. IMO this is presentational issue that should be done in the frontend, not through SQL Server. What do you...

  • RE: Need help bulding a query in SQL server

    I agree that the design is much too complicated, but we know too little about the underlying logic to clearly state what would be the best solution (at least I do)... Why did...

  • RE: Need help bulding a query in SQL server

    There could be one serious flaw in this query... it depends on one assumption, that was not mentioned: No duplicities and no overlapping in range attribute values. That is, it...

  • RE: Need help bulding a query in SQL server

    Let's see if this helps... I will use David's SQL and only modify it to exclude the ItemID:

    --temp table

    create table #temp (attrID int, value varchar(20))

    insert into #temp values...

  • RE: Need help bulding a query in SQL server

    Hmmm... so in the RFloat table there are always 2 records for each item/attribute combination, meaning maximum and minimum value? Or does this table have 2 columns for min and...

  • RE: Need help bulding a query in SQL server

    It should be possible to do such things with dynamic SQL, however, I don't understand your description well enough to be more specific... Is it so that certain field in...

  • RE: Backup Process

    As far as I know, SQLServer 2000 keeps track of running transactions during a backup, and results of all transactions, committed before the backup ends, are written to the file.

    So, if...

  • RE: Identity field as a key

    Joe,

    yes I know how rare. Three years ago we had about 50 titles (out of 25.000) that either had a duplicity in EAN or didn't have EAN at all. Since...

  • RE: Identity field as a key

    Jon,

    I'm working in a company that publishes and distributes books and I can assure you that although it would seem so, ISBN is not always unique. There are rare cases...

  • RE: Single quotes in VARCHAR and TEXT

    Thanks for your replies, I'll try to explain that to the author of the code and get him to modify it so that it uses REPLACE at all vital points (problem...

  • RE: SQL Mail option

    Hi,

    did you copy the SQL from stored procedure? If so, then probably the problem is here:

    @qyery = 'Select * from ##DueListing',

    Just a typo... qyery instead of query. Hope this helps... if...

Viewing 15 posts - 1,081 through 1,095 (of 1,216 total)