Forum Replies Created

Viewing 6 posts - 1 through 6 (of 6 total)

  • RE: No database space

    Try running the following to update your space usage:

    DBCC UPDATEUSAGE ('your_db_name') WITH NO_INFOMSGS

     

  • RE: Another Job schedule failing

    If you schedule a dts package then it runs under the login that the SQL Server Agent is running under.  Make sure this login has the correct permissions on the...

  • RE: SQL Server does not exist or access denied

    Is the server in the DMZ?  If so it will not resolve the name.  You will have to use the IP.

  • RE: Dynamic server connections

    I have done something similar in the past with two dts jobs.  Job one reads a list of servers from a table and creates a batch file of dtsrun statements...

  • RE: UDF in computed column of Temp table fails

    #temp tables are created in the tempdb and are only available during the current connection.  Something like the following would not work:

    begin

    create #temp

    commit

    select * from #temp

     

    From BOL:

    Local temporary tables have...

  • RE: DTS job failing

    DTS runs as a command line object, so it does not use the memory reserved for SQL Server, but the free memory on the system.  You might try backing down...

Viewing 6 posts - 1 through 6 (of 6 total)