Forum Replies Created

Viewing 15 posts - 571 through 585 (of 1,048 total)

  • RE: Custom Aggregate for statistical use

    Ho many rows are we talking about? You could try inserting these rows into a table variable using an order-by and run the aggregate against the table variable.That should run...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: There exists an index but query does not user created index, Why?

    An index can't be used for this: where name like '%Name1%'

    anytime you are searching for a pattern somewhere in the middle of the column the index seek cannot...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Compatibility mode 80 and SQL2008

    You will not have issues that prevent you from taking advantage of the performance enhancements of SQL Server or the new 64bit hardware & more memory.

    In fact most of the...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Life is Short

    Well stated Sir.

    "Do not spoil what you have by desiring what you have not;

    Remember that what you now have was once among things you only hoped for."

    ~Epicurus

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Timeouts occurring, but not reflected in the SQL Server Error Log.

    A 64bit platform can make a marginal design run well because it can put everything back in main memory again which makes everything run faster again (for a while anyway)....

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: does physical dll file needed after we have create assembly based on it?

    I believe what may be causing that is that when a database is restored it can end up with a new owner... if the login that restored it is different...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Timeouts occurring, but not reflected in the SQL Server Error Log.

    The description of your architecture does not sound optimal for what you are doing. At the very least you should ditch the COM crap, and retrofit using using...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Timeouts occurring, but not reflected in the SQL Server Error Log.

    tell me more about these com objects you are using.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: 2 queries with a union - Can I optimize to a single query?

    Well, the query is aggregating rows based upon these unique entities:

    case when sugar=1 then 'sugar' else 'bread' end, sp1, cl1, da, d.m, m.cu, m.to

    So I am thinking that maybe...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Finding datatype

    If it were me I would make my best guess as to the proper type and do a trial insert into a table. To keep things simple and low overhead...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: 2 queries with a union - Can I optimize to a single query?

    Without being able to test I might suggest the following:

    select

    case when sugar=1 then 'sugar' else 'bread' end as type,

    sp1,

    cl1 as pr,

    da,

    d.m,

    m.cu,

    m.to,

    sum(case when sugar=1 then 1 else cast(init as float(10,2)) end)...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Hacking Data

    Heh heh, well, I was about to overlook your comment about the cats and dogs and commend you on your quality of preparation personal responsibility, but then I noticed you...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How to close any topic?

    GilaMonster (4/21/2011)


    ??

    It was meant as a joke.

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: Hacking Data

    An issue regarding the extensive use of software/firmware and intercommunication in new cars is not only that of security, but of survivability.

    Systems subjected to EMP or high level of radiation...

    The probability of survival is inversely proportional to the angle of arrival.

  • RE: How to close any topic?

    You may not close any topics, especially of yourself. It will be used for evidence.

    The probability of survival is inversely proportional to the angle of arrival.

Viewing 15 posts - 571 through 585 (of 1,048 total)