Forum Replies Created

Viewing 15 posts - 2,356 through 2,370 (of 3,678 total)

  • RE: cannot update table

    Chances are one or more of your tables is locked.

    Try running sp_lock or looking at the current activity in Enterprise Manager.

    One possibility is to break down your update into small...

  • RE: ANSI SQL Is Dead

    Standards always lag behind current developments. They have to.

    I find it hard to get enthusiastic about SQL-92 when we are in the last half of 2006.

    If you are a...

  • RE: A Fix() Function in T-SQL

    Solution for constipated mathematicians, work it out with paper and pencil, if that doesn't work use LOGs

  • RE: What is XML?

    Consuming XML isn't hard, it's digesting it and it makes my eyes water to parse it.

    I've used it for what it is supposed to be used for. Separating content...

  • RE: How many hours do you work

    If I ever get to the States it will be beers all round.

    I don't have many ambitions in life but I would really LOVE to have a game of baseball...

  • RE: The Support Joke

    In my first job we had a guy ring up the IT department and ask

    You know these computer viruses? Can humans catch them?

    This from a guy who forgot his...

  • RE: How many hours do you work

    In nearly 20 years I've always been fortunate in that I have worked for companies where extra hours over those in the contract were recognised. Not always in financial...

  • RE: Want to run Lotus Approach Reports against SQL Server DB

    If I remember correctly Lotus Approach relies on the old DBF format.

    You could use a DTS package to export the data you want into suitable DBF files to use for...

  • RE: Performance of query processing on SQLServer

    A primary key is a special sort of unique index.

    The difference between an primary key and a unique index is

    • A primary key cannot contain a NULL value
    • A primary key is...
  • RE: Part 2 (Detailed): Query optimizer does not pick the correct index for a query that is executed from a job

    I'm wondering if it has something to do with caching.

    QA will be running this query from scratch. Perhaps the SQLSERVERAGENT has an execution plan cached in some way.

    If you...

  • RE: Performance of query processing on SQLServer

    If I understand you correctly you have a primary key with two columns in it.

    A search using the two columns within the primary key should use an index seek, or...

  • RE: conversion from sqlserver to access

    Are you talking about SQL 7.5/2000?

    I used to do something similar using a Data Transformation Services (DTS) package within SQL Server.

    Transfering the queries is a little more involved.

    SELECT, INSERT and...

  • RE: Select on table not working

    I am guessing that dope24_sa was an attempt to create a sysadmin role that wasn't the SA login.

    Prior to SQL2005 NOT having objects owned by the dbo was always ended...

  • RE: Is it possible to export to Word?

    If you are using SQL2000 there are stored procedures that let you use ActiveX controls.

    sp_oaCreate etc.

    You can instantiate a copy of word then call methods from the Word object model.

    I...

  • RE: View times out in EM but not in QA

    It is to do with the way in which EM makes its connections. You should try the new Management Studio if you have a timeout fetish. ...

Viewing 15 posts - 2,356 through 2,370 (of 3,678 total)