Forum Replies Created

Viewing 15 posts - 4,081 through 4,095 (of 5,590 total)

  • RE: If and Then in SSRS

    Almost every property in SSRS can be set through an expression as well as directly entering a value. Right-click the Name text-box, and select text-box properties. Select the "Font" tab....

  • RE: list of indexes

    vijay82 (6/2/2010)


    thankyou

    can you plz tell same using coursors?

    Sorry, I don't do c.u.r.s.o.r.s.

    (See??? I can't even type it!) :w00t:

    ..... what's wrong with the query? Why do you feel a cursor...

  • RE: Linked server setup

    Scripting it out will do MOST of what you need. You will find that SQL does not script out ANY passwords, so you will need to change the scripted password...

  • RE: Tricky substring

    ColdCoffee (6/2/2010)


    I sense the OP needs 4 columns out of the string, as in, FirstFacilityID ,FirstPatieintID, SecondFacilityID, SecondPatieintID ; these 4 columns will hold only intergers, stripped from the real...

  • RE: Tricky substring

    ColdCoffee (6/2/2010)


    Please post us sample data in readily consumable format and as Wayne suggested, post your desired result in some visual representation... This will remove a lot of doubts..

    What ColdCoffee...

  • RE: Un-concatenate field imported from event viewer.csv file

    This solution is based on using a DelimitedSplit function, which is this (This function uses an in-line tally table. A persistent tally table will be more efficient. See the article...

  • RE: to display no. rows

    SELECT TableName = st.name, [# Rows] = sip.rows

    FROM sys.system_internals_partitions sip

    JOIN sys.tables st

    ON...

  • RE: list of indexes

    SELECT [TableName] = st.name,

    [IndexName] = si.name

    FROM sys.tables st

    JOIN sys.indexes si

    ...

  • RE: Can you link a Report (that requries parameters) from another report

    You will just have to build the URL as an expression. Determine what the URL needs to be to pass the parameter (you do know that you can pass parameters...

  • RE: Database owner

    What you're really talking about is changing what schema the tables belong to.

    What you have to watch out for is any query that uses > 1 part naming convention:

    <server>.<database>.<schema>.<table>

    So, if...

  • RE: Query with 2 Joins and Structure Changes

    Very possible, and not that hard to do.

    Read the "Cross Tabs and Pivot Tables" Part 1 and 2 articles (click the links in my signature).

    BTW, thanks for posting the table...

  • RE: How to group consecutive months

    Here's a method that utilizes an infrequently used form of the update statement, nicknamed the "Quirky Update". It's wicked fast, but has about a dozen rules that MUST be followed....

  • RE: Tricky substring

    timscronin (6/2/2010)


    No I need to be able to manipulate the first facid and the first patientid and then the second facid and second patid

    Okay, then based upon the string that...

  • RE: Tricky substring

    If I'm understanding this correctly, you want to just remove all numbers and hyphens? (0-9 and "-")

  • RE: Optimization question

    Both the [refTable] and [c] are table aliases... use whichever one you want to.

    The optimizer expands an IN to all those OR conditions... check the execution plan, they will be...

Viewing 15 posts - 4,081 through 4,095 (of 5,590 total)