Forum Replies Created

Viewing 15 posts - 256 through 270 (of 805 total)

  • RE: One query is hogging my baby!!!

    You main problem is in your second line: "My boss wrote a query". Bosses can bring down a hyperdome

     

    Seriously though, I would rather...

  • RE: using an index withe ">"

    Correct. Scans = bad. Seeks equal good.

    A mention on the cost though: Everything has to add up to 100%. This means you need to get the best operations to have...

  • RE: openrowset bug

    Yes it is. But you need the right access.

    If SQL is running on your machine, how is it logging on? LocalSystem? Your username? If localsystem, no, it will not work.

    If...

  • RE: using an index withe ">"

    As Andras pointed out, if it is a clustered, it will probably use it. But using a non clustered and * will most likely never use it.

    The reason being, to...

  • RE: Package Configuration with Environment variables

    SSIS binds a component or task to a connection manager at design time and this cannot be changed at run-time.

    If you have a package that is to be run on...

  • RE: SSIS Package Confiiguration Parameterization

    You want to look at SSIS configuration files.

    There is a welth of knowledge on the net about it but basically, Menu > SSIS > Configurations.

    In the wizard, you specify what...

  • RE: openrowset bug

    What is the NT loging that SQL is using? i.e. the user account in the services. Let's assume it's SQLLogin.

    If you logon to the server with that username, can you...

  • RE: Auto growth

    As per my first post - what vare the errors? What makes you think it should expand?

    Let's face it, there are many many reasons why it would not auto grow....

  • RE: sql question using IN

    "The tables are not that large" is a poor excuse.

    Fair enough, you may find it easier but rather struggle to understand the right way to do it now than suddenly...

  • RE: Auto growth

    Will speaks wisely.

     

    To add to his reason of SQL taking over, we had a serious issue a while back where SQL filled up one of the disks. This disk, amongst...

  • RE: All SQL Servers on Network WITH Service Pack version

    select

    getdate(),

    cast

    (serverproperty('machinename') as varchar

  • RE: openrowset bug

    You say you confirmed the file exists. Does it exist from SQL's perspective or yours? i.e. Can you see the file when logged in as SQL account.

    Does xp_CMDShell 'dir "

  • RE: sql question using IN

    My 10 cents worth:

    As it has already been mentioned, In is not great, NOT IN is bad. Gives you headaches.

    The same goes for the above example of Exists. Using NOT...

  • RE: SSIS : ETL tables locks

    Hi,

     

    Not quite sure what you are asking but here goes...

     

    If you are bulk loading and something goes wrong, the table will be locked for the very (normally) duration while SQL...

  • RE: allocation errors-urgent

    Ouch - got some nice issues there.

    Worrying that the backup is the same. Have you checked the event log for any disk errors? Might be that one of your disks...

Viewing 15 posts - 256 through 270 (of 805 total)