Forum Replies Created

Viewing 15 posts - 4,921 through 4,935 (of 5,394 total)

  • RE: Are the posted questions getting worse?

    OK, so I guess now I can be Barf.

    I'm a mog: half man, half dog. I'm my own best friend!

    It's nice to have a best friend.:-D

  • RE: Are the posted questions getting worse?

    Some time ago there was a thread entitled "Should you use your real name as nickname?".

    Maybe it's time to start the "Should you use your real pic as avatar?" thread?...

  • RE: connexion SQL server 2005 express-Visual VB.NET 2008

    If you are working on the same phisical machine, you should install a new instance of SQLServer, exactly as you installed the first one. You don't have to uninstall anything:...

  • RE: LEFT JOIN Query help

    Whats the reason for putting one filter in ON cluase and the other filter in WHERE clause? why not both in ON or both in WHERE?

    If you put both...

  • RE: LEFT JOIN Query help

    Add filter conditions for the main table (TableA) in the WHERE clause, then add filters for TableB in the JOIN conditions.

    SELECT *

    FROM TableA

    LEFT JOIN TableB

    ON (TableA.ID1=TableB.ID1 AND TableA.ID2=TableB.ID2 AND TableB.AnotherStat='B'...

  • RE: Server login assigned to "dbo" user within database

    Let's cut the whole thing into two parts:

    1) Orphaned user 'qc'

    2) Users not logging to databases

    For number 1 I still suggest changing db owner. Change it to what it already...

  • RE: Sql Server 2000 VS Sql Server 2005

    Yes, you can do it. Nothing prevents you from installing two versions on the same machine.

  • RE: Server login assigned to "dbo" user within database

    Have you tried sp_droprolemember 'db_owner', 'yourAccount'?

    An alternative to this is sp_dropalias 'yourAccount', which is deprecated but should still work.

  • RE: Simple date question

    I completely agree with you, Adi.

  • RE: Server login assigned to "dbo" user within database

    Run sp_helpdb dbName.

    What do you get in the "owner" column?

  • RE: Simple date question

    Rob Goddard (8/11/2009)


    As above post, I'm in the UK and setting the default login language to "British English" will render the format "YYYY-MM-DD" useless unless actually specified with 120 in...

  • RE: Simple date question

    This is what I get in my US-English instance:

    select convert(datetime,'31/12/2009',120) --FAILS

    select convert(datetime,'31/12/2009') --FAILS

    select convert(datetime,'2009-06-30',120) --WORKS

    select convert(datetime,'2009-06-30') --WORKS

    SELECT isdate('31/12/2009') -- Returns False

    SELECT isdate('2009-06-30') -- Returns True

  • RE: Job fails sometimes

    Running the provider out of process is exactly what you did: uncheck allow in process.

    The main difference is that when SQLServer loads the provider in process, takes the provider inside...

  • RE: Simple date question

    Check your default language in the server properties, advanced window.

    SET LANGUAGE implicitly sets the setting of SET DATEFORMAT.

    Regards

    Gianluca

  • RE: Server login assigned to "dbo" user within database

    Check who's the database owner.

    If it is your 3rd party sw user, run sp_changedbowner to assign to another user.

    Hope this helps

    Gianluca

Viewing 15 posts - 4,921 through 4,935 (of 5,394 total)