Forum Replies Created

Viewing 15 posts - 12,346 through 12,360 (of 22,214 total)

  • RE: schema script

    And if you go to Tools -> Options -> SQL Server Object Explorer -> Scripting, you can exercise some control over how scripts are generated.

  • RE: Outer Join

    Yasir Masood (6/11/2011)


    That worked. Thank you

    Not a problem. Glad I could help. Also, thanks for posting that it worked. Makes it better for someone reading this later.

  • RE: Outer Join

    Not having your data, it's hard for me test this, but you can try moving the other WHERE criteria into the JOIN clause. When dealing with OUTER JOINs, filter criteria...

  • RE: Difference between.

    muthukkumaran Kaliyamoorthy (6/11/2011)


    ting.kris (6/11/2011)


    Spam. Please don't respond.

    You don't need to do that. Just click on the Report button and ignore the post otherwise.

  • RE: Difference between.

    shiv-356842 (6/11/2011)


    Hi Team,

    What is difference between Migration and Upgradation... please guide me.

    Tx

    I'm not sure what context you're asking the question, but here's my swipe at an answer.

    A migration is moving...

  • RE: Novice question about building databases from master script

    In addition to the order, you also have to worry about permissions. Do you have permissions to create the objects? Once created, do the objects have permissions to see other...

  • RE: how to monitor t-log(no.of transactions per day and list of transactions )

    Depending on how you're defining transactions, you could go the Performance Monitor route, which just counts transactions, or you may need to set up a server side trace. You can...

  • RE: DBCC FREEPROCCACHE for Execution Plans??

    One piece of advice. You're writing your queries using the ANSI 89 standard on joins. Don't do that. As soon as you get to outer joins you're going to have...

  • RE: Working with Multiple Look Ups best practice

    Man, I couldn't have been further off track. I totally missed several key words and tricky phrases in the original question. Sorry for any confusion tossed into the mix.

  • RE: Selecting Rows Based on condition

    I wrote an article outlining several ways to get versioned data. Latest date is not any different than latest version. Take a look at this[/url] and post back here if...

  • RE: Left outer join and subquery.

    You're performing either ANSI 89 style joins. Instead, you should use the ANSI 92 style

    SELECT ...

    FROM TABLEA AS a

    JOIN TABLEB AS b

    ON a.ID = b.ID

    LEFT JOIN TABLEC AS c

    ON b.NewID...

  • RE: CXPACKET Wait - advice on Max Dop setting

    Marios Philippopoulos (6/10/2011)


    I must admit I've always played around with the MAXDOP setting when I had high CXPACKET waits.

    Grant's suggestion is something I had never considered before.

    So, if I...

  • RE: Connectivity Problem in sql server 2008 R2

    You're not using the right protocol or a protocol is not enabled on the server is my first thought? Or, maybe you've got the server name wrong? Maybe the name...

  • RE: Curiosity Question - Do you run only perfect, never fails software apps on your systems?

    I know that we had lots of apps with issues, but I have to say, most of our servers were up at least 3-4 months at a time. They'd probably...

  • RE: Working with Multiple Look Ups best practice

    I'm not entirely sure I understand the problem as you defined it, but if I understand correctly, aren't we just talking about a series of queries with parameters? You pull...

Viewing 15 posts - 12,346 through 12,360 (of 22,214 total)