Forum Replies Created

Viewing 15 posts - 3,346 through 3,360 (of 5,393 total)

  • RE: Out of process OLEDB provider and windows authentication

    Sure, I will check MSDTC settings once again.

    It's not that easy tracing DTC errors, it's going to be a pain.

    I'm afraid you will have to wait some days for that...

    -- Gianluca Sartori

  • RE: Out of process OLEDB provider and windows authentication

    Crap! I'm afraid I spoke too soon.

    Now it refuses to participate distributed transactions.

    #@#@€!!??#@!!! :angry:

    -- Gianluca Sartori

  • RE: Are the posted questions getting worse?

    Steve Jones - SSC Editor (3/19/2011)


    Craig Farrell (3/19/2011)


    AnyWayDBA

    Following

    ...and following.

    -- Gianluca Sartori

  • RE: Out of process OLEDB provider and windows authentication

    Solved! MS Support found the permissions we were missing.

    The launching user had to be granted these Local Security Policies:

    Create Global Objects (SeCreateGlobalPrivilege)

    Impersonate a client after authentication (SeImpersonatePrivilege)

    I'm setting up a...

    -- Gianluca Sartori

  • RE: SQL Exams

    biodun_omidiran (3/18/2011)


    HI Member, i am considering writing a certification exam on SQL 2008 maintenance and implementation can anybody help for materials or dumb for the exam, my email address is...

    -- Gianluca Sartori

  • RE: Time taken by SQL Engine to run a job

    Probably parallelism gets in the way, so that elapsed time is far less than CPU worker time.

    -- Gianluca Sartori

  • RE: SQL Server 2008 deadlocked transactions

    That's nonsense. Transactions have to finish down their own path. If you are experiencing blocking issues, focus on the causes and tune the queries instead.

    -- Gianluca Sartori

  • RE: DTS Run Job

    OK, found it.

    Just add the /!Y parameter to DTSrun.exe and it should display the original parameters.

    -- Gianluca Sartori

  • RE: DTS Run Job

    Uripedes Pants (3/16/2011)


    that's the part that's really confusing me. I can create a new job scheduling a package to run. Then do it again using the same package but...

    -- Gianluca Sartori

  • RE: DTS Run Job

    That "ID" is a crypted string that contains all the information on package name and version, server name and credentials to log in to the server that holds the DTS...

    -- Gianluca Sartori

  • RE: custome function with NULL value in WHERE clause

    Concatenating that way is not safe. You'd better use XML for that:

    CREATE FUNCTION dbo.CI(@chg_ref_num VARCHAR(10))

    RETURNS VARCHAR(1000)

    AS

    BEGIN

    DECLARE @ci VARCHAR(1000)

    SET @ci = STUFF((

    ...

    -- Gianluca Sartori

  • RE: custome function with NULL value in WHERE clause

    Can you post the function script?

    -- Gianluca Sartori

  • RE: Using pivot in SQL 2000?

    You can create cross tabs even without PIVOT operator: check out this great article from Jeff Moden:

    http://www.sqlservercentral.com/articles/T-SQL/63681/

    -- Gianluca Sartori

  • RE: Using pivot in SQL 2000?

    Yes, it is possible, though it could end up performing badly. What have you tried so far?

    If you need help you can come back to this thread and ask a...

    -- Gianluca Sartori

  • RE: SQL Server 2008 RC Server-Level Collation change

    The two collations are very similar:

    Latin1_General_CI_AS :- Latin1-General, case-insensitive, accent-sensitive, kanatype-insensitive, width-insensitive

    SQL_Latin1_General_CP1_CI_AS:- Latin1-General, case-insensitive,accent-sensitive, kanatype-insensitive, width-insensitive for Unicode Data, SQL Server Sort Order 52 on Code Page 1252 for non-Unicode...

    -- Gianluca Sartori

Viewing 15 posts - 3,346 through 3,360 (of 5,393 total)