Forum Replies Created

Viewing 15 posts - 136 through 150 (of 687 total)

  • RE: join tables on columns that have different data

    Something like this

    SELECT

    a.name,

    b.name

    FROM table1 a

    inner join table 2 b

    on a.name = case when b.name = 'BO' THEN 'Boston'

    WHEN b.name = 'bos' THEN 'Boston'

    WHEN b.name = 'NY' THEN 'New York'

    ELSE 'na'

    END

  • RE: Transaction Log growth out of control

    You can use dbcc loginfo to find active VLFs and their status.

  • RE: SSRS Reports Data - Security Levels

    User!UserID displays the name of the user (domain name or other credentials passed in) executing the report, assign this field to a parameter in your report.

    report parameter: @userID

    value: =User!UserID

    With some...

  • RE: SSRS Reports Data - Security Levels

    Here's one solution

    There is a Built-in Field named UserID (=User!UserID). This userID is the user's name that is passed through the reporting system when the report is run. This can...

  • RE: Fail Over Clustering Question

    If your cluster is created find your cluster name by looking in the Server Manager under Features > Failover Cluster Manager > Services and applications > [instanceName].

    In the resource window...

  • RE: Fail Over Clustering Question

    In a cluster you'll have a cluster name, a virtual domain object. This domain object will have its own IP assigned and will connect to whichever server is hosting the...

  • RE: Talking baseball

    "Play me or trade me."

    I say trade him.

  • RE: Talking baseball

    Sure, providing a solid definition for the term is tough. Until it is proven that runs late in the game are more important than runs early in the game, I'll...

  • RE: Talking baseball

    What is up with Oakland! They are tearing it up, I'm unsure if they're really good or Texas and LAA are really bad. I know pujols was struggling but one...

  • RE: Talking baseball

    Yeah, that's the problem I now have with "clutch", it is meaningless. To try and have a formula for defining a clutch score based on probabilities and leverage indices, c'mon....

  • RE: Talking baseball

    Derek Jeter, "Mr. Clucth". David Ortiz, "he's a great clutch hitter".

    What does "clutch" mean? Is there any evidence of this term manifesting itself in a game?

    This is a term that...

  • RE: Arithmetic overflow error

    If SUM(C.PeriodsAbsent) > 1000, it will break. Your cast limits values to 999.9 at the most.

    What is the value of SUM(C.PeriodsAbsent)?

  • RE: Write PowerShell Output to SQL Server Table

    Jeff,

    I have the very script you're looking for that does exactly what you want.

    I pieced it together using a couple functions I found online and it works very well.

    -It...

  • RE: 3 instances of SQL on 1 vm VS 3 separate vm's

    Dealing with smaller virtual environments where I'm not necessarily constrained by a lack of resources, I'm always inclined to keep one instance on one server. The main reason being stability...

  • RE: PAGELATCH_UP Won't Let Go!

    10.50.4000

Viewing 15 posts - 136 through 150 (of 687 total)