Forum Replies Created

Viewing 15 posts - 646 through 660 (of 1,183 total)

  • RE: Version80 database compatibility level is not supported

    Changing the compatibility level is in fact that easy. Whether you'll have bugs in the procs or elsewhere is a separate question, but if you're just transferring data manually or...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Find Number of Character Repeated

    karthikeyan,

    Now that was a fun little exercise! Below is a function that will return a table.

    CREATE FUNCTION [dbo].[fnCountCharacterOccurrence]

    (@String NVARCHAR(4000))

    RETURNS @Results TABLE (item NCHAR(1), itemCount INT)

    AS

    BEGIN

    ...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: parameters in FROM

    Can you please explain what you want with a bit more detail?

    Please read the following post, and then try again. 😀

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Does size really matter?

    😀

    Those replies just show how much I know, but then again, I haven't had any experience with large DBs.

    😀

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Does size really matter?

    I would guess this would be a question to help determine your ability in writing optimized queries/procs. As the size of the DB grows so would the need for optimized...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: trigger report on reporting server

    I humbly submit this article...

    http://www.sqlservercentral.com/articles/Development/2824/

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Find where all two columns exist in the database

    SELECT TABLE_NAME FROM information_schema.columns WHERE COLUMN_NAME = '.....'

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Report rendering time too long

    robert@robertspencer.com (12/18/2007)


    Too bad a proc can't return more than one dataset.

    Thanks,

    Robert

    Actually a proc CAN return more than one dataset. :w00t: We're doing it in our .NET application. Now I'm not...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Calculating Geometric Growth

    *laughs*

    I used Excel. 😎

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Report rendering time too long

    I'm not sure if your performing the calculations in your code in in the report itself. If you're doing the calcs in the report, move them into the procedures instead....

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Calculating Geometric Growth

    It's 1.02 to the 36th power or

    1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02

    *1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02

    *1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02

    *1.02*1.02*1.02*1.02*1.02*1.02*1.02*1.02

    *1.02*1.02*1.02*1.02

    =2.039887

    Which in your example has been rounded up.

    😀

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Storing Multiple Values

    search this site for the split function

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: Speeding up the initial query

    ...and there's always the possibility of rewriting the query. Can you post it so we can take a look to see if there's something to be done there?

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: CURSOR v WHILE for beginners

    Matt Miller (12/17/2007)


    All right - now THAT's ugly.... Tell me - what does get_next_CRM_ID do?

    Using that proprietary thing right there is the reason you're jammed up. Looks to...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg
  • RE: CURSOR v WHILE for beginners

    Being that your procedure does all of that, IMHO you are stuck with looping of some sort.

    You can always use a temp table and loop through an IDENTITY column...

    ______________________________________________________________________

    Personal Motto: Why push the envelope when you can just open it?

    If you follow the direction given HERE[/url] you'll likely increase the number and quality of responses you get to your question.

    Jason L. Selburg

Viewing 15 posts - 646 through 660 (of 1,183 total)