Forum Replies Created

Viewing 15 posts - 76 through 90 (of 334 total)

  • RE: Openquery works but 4 part name table don''''t

    I did a google search on the error and several of the articles mentioned it being a security mapping issue.  Try mapping all users to a single 400 signon.

     

  • RE: Openquery works but 4 part name table don''''t

    I'm just guessing now.  Do you have the latest client access and patches?  Have you tried deleting the datasource and recreating it.  Do you have the same datasource name on...

  • RE: Openquery works but 4 part name table don''''t

    I'm assuming your using an ODBC datasource for your connection and the name of the datasource is LPUSA01.  If not the the syntax should be.

    linkedserver.datasourcename.library.table

    Try that.

    Tom

  • RE: Openquery works but 4 part name table don''''t

    Try:

    select * from LPUSA01..EBSTSTNEW.BZRCRP

    Tom

     

  • RE: Backup

    I never implied that you were not sufficiently protected against failures.  I think that your situation of dealing with a 500 gig database backup file to a unc share is...

  • RE: Backup

    I backup to unc shares on all of my production servers and haven't had a problem doing it for 4 years now.  I not only do it with my sql...

  • RE: Temp table in a stored proc

    You'll also have to take the single tick off of hiday.  You've got the hiday default value commented out in the procedure definition.  I would also pass  values to the...

  • RE: compact sql server database

    Are you having a performance problem with the database?

     

  • RE: compact sql server database

    Sql databases do not need compacting like Access databases, because they are not flat file db's.  That being said, I'm assuming you're having a space issue with your database.  Either...

  • RE: how to fine tune this query

    Try this.  It might be faster.

     

    SELECT open_date,id

    FROM AHDPROD.call_req

    WHERE

    (     priority in( 0,1,2)    

    AND  active_flag = 1 AND type = 'I'    

    AND ( assignee IS NOT NULL OR group_id...

  • RE: At what point in time is a full SQL 2000 backup valid?

    It's the point at which the backup is finished.

    Tom

  • RE: How to move tables from Primary data file to secondary data file

    One way to do it is to recreate the clustered index on the new file.  You should be able to go into manage indexes and change the location.  You could...

  • RE: Running Delete on a Very Large table

    I would also suggest you increase the fillfactor on your clustered index build.  Assuming that as people sign up they are being added at the end of the index, based...

  • RE: NVARCHAR to VARCHAR conversion

    It has been a while, but I remember doing something similar and didn't set the space free up untill I re-indexed the tables that had datatype changes.  It ended up...

  • RE: Unknown Values

    I would create an audit table and a trigger that writes out the row that's being changed along with the date.  That way you can do a quick search on...

Viewing 15 posts - 76 through 90 (of 334 total)