Forum Replies Created

Viewing 15 posts - 31 through 45 (of 212 total)

  • RE: Another Linked Server Issue

    Bad_Karma (5/10/2012)


    I can't believe it...Rebooting the server fixed the issue. Thanks for the help, if it wasn't for that link I honestly don't know how long that would have taken...

  • RE: Another Linked Server Issue

    Bad_Karma (5/9/2012)


    I'm open to it, but a little confused. This seems to be a database setting, not server setting.

    Yes, you are right - this setting probably doesn't apply to your...

  • RE: Another Linked Server Issue

    Bad_Karma (5/9/2012)


    Thanks for link, unfortunately after enabling "Allow inprocess", I'm unable to hit the oracle server from any account. However I did notice something that I did not do, and...

  • RE: Another Linked Server Issue

    Check this link and make sure you have followed all the steps, including enabling “Allow inprocess” for the OraOLEDB provider:

    http://www.ideaexcursion.com/2009/01/05/connecting-to-oracle-from-sql-server/[/url]

    Bad_Karma (5/9/2012)


    Well, thats what I attempted to do when I created...

  • RE: Another Linked Server Issue

    Ah, so you can use the linked server when using your Windows Auth login, but SQL Agent uses NT AUTHORITY and does not have access to the linked server. ...

  • RE: Another Linked Server Issue

    So why would you even notice that Windows Authentication works, when you have designated SQL Server Authentication only, using the AMSCRYSTAL login? Can you run a query straight from...

  • RE: Another Linked Server Issue

    And you've verified that the 'hard-code creds' work on the Oracle server? Have you set up the Linked Server security by checking 'Be made using this security context', and...

  • RE: nested xml extract

    If you are not opposed to hard-coding in empty nodes in an ISNULL, this works:

    SELECT

    W.RecID,

    W.field1, (

    SELECT

    U.RecID2,

    U.field2,

    isnull((

    SELECT

    P.RecID3,

    P.field3,

    P.field4,

    P.field5

    FROM

    @tmp3 P

    WHERE

    P.RecID3 = U.RecID2

    FOR XML PATH ('Innermost'), ROOT('InnermostRoot'),TYPE ),

    '<InnermostRoot><Innermost>

    ...

  • RE: nested xml extract

    Can you show me what your 3 rows should look like?

  • RE: Job Category

    SELECT j.[job_id], j.[category_id], c.name [category_name]

    FROM [msdb].[dbo].[sysjobs] j

    JOIN [msdb].[dbo].[syscategories] c

    on j.category_id = c.category_id

    🙂

  • RE: NOEXPAND hint returns incorrect bit values

    capn.hector (5/4/2012)


    your right those dont really look like bad fragmentation numbers. im at the end of my knowledge here. with the incorrect data getting in have you tried...

  • RE: NOEXPAND hint returns incorrect bit values

    capn.hector (5/4/2012)


    Coming from BOL:

    When a unique clustered index is created on a view, the result set is stored in the database just like a table with a clustered index is...

  • RE: NOEXPAND hint returns incorrect bit values

    That's what we were thinking when we rebuilt the indexes - but why would that happen, especially more than once? Is it common for view indexes to get out...

  • RE: What is the logical Processing order of select statement

    SQLRNNR (5/3/2012)


    Woot woot.

    For any interested - Itzik has his poster posted here:

    http://www.sql.co.il/books/insidetsql2008/Logical%20Query%20Processing%20Poster.pdf

    Wonderful. Thanks!

  • RE: How to reorganize and rebuild all indexes

    Should be done during downtime - rebuilding indexes places table locks and prevents access during the rebuild process - unless you use REBUILD WITH ONLINE = ON.

    USE my_db

    GO

    EXEC sp_MSforeachtable @command1="print...

Viewing 15 posts - 31 through 45 (of 212 total)