Forum Replies Created

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

  • 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?...

    -- Gianluca Sartori

  • 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:...

    -- Gianluca Sartori

  • 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...

    -- Gianluca Sartori

  • 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'...

    -- Gianluca Sartori

  • 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...

    -- Gianluca Sartori

  • RE: Sql Server 2000 VS Sql Server 2005

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

    -- Gianluca Sartori

  • 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.

    -- Gianluca Sartori

  • RE: Simple date question

    I completely agree with you, Adi.

    -- Gianluca Sartori

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

    Run sp_helpdb dbName.

    What do you get in the "owner" column?

    -- Gianluca Sartori

  • 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...

    -- Gianluca Sartori

  • 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

    -- Gianluca Sartori

  • 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...

    -- Gianluca Sartori

  • 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

    -- Gianluca Sartori

  • 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

    -- Gianluca Sartori

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

    -I have authentification windows comme nom du serveur and I would import my database to a server created by mine.HOW SHALL I CREATE A NEW SERVER?

    You can create a new...

    -- Gianluca Sartori

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