Forum Replies Created

Viewing 15 posts - 1,456 through 1,470 (of 3,232 total)

  • RE: help with like search

    Either way you look at it, SQL Server will perform a table scan because of the %value% search. Here's a way to work it w/o dynamic SQL:

    declare @table table...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Allocate more memory on SQL Server

    How much memory is in your server?

    What is your max server memory set at (sp_configure)?

    What version of SQL Server are you on?

    What Server OS version are you on?

    What else are...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Allocate more memory on SQL Server

    There are a few performance metrics to watch for that may signify signs of memory pressure and the need for more memory.

    1. Buffer Cache Hit Ratio - by far the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: SQL Server 2005 - Functions - Stored Procedures - Views

    Duplicate thread....please continue here:http://www.sqlservercentral.com/Forums/Topic709419-149-1.aspx

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Using Functions or Stored Procedures or Views or ????

    The views won't save you from performing the joins either. They'll just hide the fact that there are so many joins to produce that recordset. Joins aren't a...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Pass Variable to Precendant Constraint

    I have a package that does the exact same thing. Here's how it is set up:

    1. Package does some import stuff.

    2. Execute SQL Task checks table row count:

    ...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Pass Variable to Precendant Constraint

    Ah, my bad. I thought the problem was your precedence constraint. You are saying that:

    The issue is however, that my variable is never increasing past 0.

    What does the...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Pass Variable to Precendant Constraint

    Try just expression instead of expression and constraint.

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: SSAS Cube without a DW logic

    I'm not sure what 'best practices' are out there for this, but I agree with your line of thought. I personally would handle this by modeling out the data...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Pass Variable to Precendant Constraint

    Edit the precedence constraint and set the Evaluation operation setting to 'Expression'. Then use the Expression text box to check your variable value as such: @[User::CheckData] > 0.

    You'll...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Behave differently in DTS and SSMS

    It sounds like a data problem to me. If the same SP works in 2 of the 3 environments, but not in the 3rd, it's usually data and nothing...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: handling Distinct rows of data

    If you don't care which colors are returned, something as simple as this will work:

    DECLARE @Colors TABLE (ID int, Color varchar(12))

    INSERT INTO @Colors

    SELECT 1, 'red' UNION ALL

    SELECT 1, 'blue' UNION...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: Set TablesList Property with expression

    Thanks Phil. I had read through that article as well, but I was hoping there was an easier way to do it through the expression builder.

    I had...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: when to create new tables

    I understand the super/sub type modeling technique and I know that it is a valid method for modeling data and that it is used all over the place. I...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

  • RE: when to create new tables

    Why do you think you need to put common attributes in one table? If I had 2 different entities Person and Building and both entities had an address associated...

    John Rowan

    ======================================================
    ======================================================
    Forum Etiquette: How to post data/code on a forum to get the best help[/url] - by Jeff Moden

Viewing 15 posts - 1,456 through 1,470 (of 3,232 total)