Forum Replies Created

Viewing 15 posts - 271 through 285 (of 302 total)

  • RE: send output to txt file

    I agree to start simple.  Try running this in QA

    exec master..xp_cmdshell 'bcp pubs..authors out c:\authors.txt /c /SYourServer /T'

    I've seen that error before when there was a problem creating the file......

  • RE: job originally owned by sa fails after sa password changed

    I agree that the job fails due to the DTSrun command string.  Try this.  Make a change to a package and create a second job to schedule it.  Compare the DTSrun command...

  • RE: Remedy free form queries and blocking

    We also use Remedy Help Desk but the tables aren't large enough yet to cause any kind of locking problem.  However, you may be able to add the NOLOCK hint...

  • RE: SQL Server has poor connection to SQL 2000 !!!!

    This may be of interest to you.  We had a SQL 7 database (on NT 4) with a linked server to a SQL 2000 database (on W2K).  The job on...

  • RE: Determining # of CALs

    The License Logging Service on your server probably is not running.  (I was able to create the same errors on our test box by shutting if off.)  Start the service if it isn't...

  • RE: Determining # of CALs

    When I run "select serverproperty('licensetype')" I get "PER_PROCESSOR".

    When I run "select serverproperty('numlicenses')" I get 4.

    BOL says "NumLicenses - Number of client licenses registered for this instance of SQL Server, if...

  • RE: Index Issue

    DBCC DBREINDEX does not work on SQL 6.5.  You can run DBCC CheckTable (tablename).  You could also try DBCC CheckAlloc (databasename) or DBCC NewAlloc (databasename).

    Linda

  • RE: BCP Error

    It also could mean that the destination path doesn't exist or is incorrect (typo?).  I think I've also gotten it before when bcp.exe wasn't installed in the default directory.  Try...

  • RE: Problem converting UTC to datetime in DTS

    Try one of these.  You may need to use other date styles though.

    SELECT RIGHT(DateAdd(s, 38169, getdate()),20)

    SELECT CONVERT(varchar(30),DateAdd(s, 38169, getdate()),109)

    We also use Cisco but the date/time field looks like 1089139787 (Greenwich Mean Time).  Hope...

  • RE: Sql 2000 permissions help needed!

    If you are moving to a SQL 2000 box with 'much tighter security', why not make the security the same as the original box and begin 'tightening' one piece at...

  • RE: restoring a SQL 7 backup to SQL 2000 database

    I would say "be careful".  We had a database that was originally created in 6.5 and then upgraded to SQL 7 with no problems.  When I restored it to a...

  • RE: Orphaned Processes

    You could try these:  Have the client reboot or Drop and re-create the linked server, but I'm not sure if either will work.  Does the linked server still have a good connection? ...

  • RE: Linked server (Provider ran out of memory)

    Had that error too on an Oracle linked server, and was able to ask about it at a SQL Server Connections conference recently.  The memory management instructor recommended that I add...

  • RE: Determine version of SQL server

    How about reading the SQL error log?  Would this give you what you need?

    Microsoft SQL Server  2000 - 8.00.679 (Intel X86)

     Aug 26 2002 15:09:48

     Copyright (c) 1988-2000 Microsoft Corporation

     Desktop...

  • RE: DTS Package fails when SCHEDULED (Only fails with non-MS dbs / drivers)

    Just for fun... why don't you create a test package (on the server) and put in the piece that is failing and schedule it to run?

    Linda

Viewing 15 posts - 271 through 285 (of 302 total)