Forum Replies Created

Viewing 15 posts - 421 through 435 (of 455 total)

  • RE: LEFT OUTER JOINS turns to INNER JOIN automatically ????

    Hi Prateek,

    Check this article

    http://support.microsoft.com/default.aspx?scid=kb;en-us;176480

    Well it doesnot really elaborate on the internal logic and implications of AND and WHERE clauses for Outer Joins but it does throw little light...

  • RE: Inserting only new and modified records?

    Well if you are running the insert and update statements inside a Stored Procedure then related inserts and updates on tbl1 could be done in the same procedure under the same...

  • RE: Data access between two SQL Server instances

    use sp_addlinkedserver Stored Procedure to connect to the database you want to accessdata from and you should be able to access data between any number of instances like

    select * from...

  • RE: ANSI JOIN vs. OUTER JOIN

    My goodness I am so ignorant, I thought Left Outer Join itself is been replaced with some other syntax  based on what I heard, I now believe that I am...

  • RE: ANSI JOIN vs. OUTER JOIN

    Oops, I do not see any sample. Can U pls check again.

    Thanks

  • RE: SQLServer Password Issue

    Thanks Steve,

    Well, yes my server is exposed to Internet, but only a section of known people know about its details, its basically a staging server on which we are testing...

  • RE: Datetime comparison

    Rob,

    what does  '0700' refer to in your SQL Query? I mean what part of the date?

     

  • RE: Server Password Issue

    Well I believe I posted this thread at a wrong place, at the same time I do won't open a duplicate of this thread in some other forum, so can...

  • RE: Server Password Issue

    As a matter of fact I donot have any jobs running on my server. It is a fresh install and it only has a single database running on it.

  • RE: Server Password Issue

    Yeah it is for SA passsword, Well I am wondering what virus can change the Database Server Password, some light on this would be very helpful.

     

    Thanks

     

  • RE: 3 General questions

    What if the above statement is used inside a cursor like

    declare mycur cursor for

    SELECT * FROM MyTable WITH (ROWLOCK, UPDLOCK)

    Do we still need to include it in a transaction for...

  • RE: CHAR vs INT

    Well its always a personal choice beyond anything in this issue, as Bit most of the times is basically used to toggle between two values so char(1) would be optimal...

  • RE: Help with Joins

    Exactly I too meant the same, Thanks for elaborating. I believe hawg already has the solution for it.

     

     

  • RE: No Begin for Commit

    Hi Ryan,

    Well you definitely need to have this wrapped in a transaction however you may want to check if you have proper error handling taken care after insert and update...

  • RE: No Begin for Commit

    Yes I too feel, the syntax is fine, however there should be some issue with the query, I do not see any place where a END is missing.

Viewing 15 posts - 421 through 435 (of 455 total)