Forum Replies Created

Viewing 15 posts - 421 through 435 (of 582 total)

  • RE: Running out of disk space

    I second the last suggestions, especially if you have separate physical disks available.

  • RE: Running out of disk space

    You can add a file to the filegroup and the second file will automatically be used once the first file is full.  Turn off the "automatically grow file" setting so...

  • RE: Can''''t get an updatable recordset on a form access/sql server

    First of all, a primary key must be defined in the table when using a linked SQL Server table in Access for the table to be updatable.   Access forms are updatable by...

  • RE: How to get a Server Agent Job to report Failure?

    Add a step5 that does identical work as step4.  For step4, make it report failure, on both success and failure.  Modify step2 to go to step5 on success.

    This is success:

    Step1 ->...

  • RE: Removing the Builtin Administrators - Some Pitfalls to Avoid

    The "Via group membership" option disappeared after I changed the setting.  I thought it was odd as well, but I was just glad the problem was solved!

     

     

  • RE: How to get a Server Agent Job to report Failure?

    For step three, in the "On success action" set it to quit the job reporting failure.

     

  • RE: How to select :"MAX DATE" and :"Min date"

    select max(myDateField) as MaxDate, min(myDateField) as MinDate from myTable

     

  • RE: DTS- coying column with no field title

    Just add an alias name to the column, then you'll be able to map it:

    Transform Data Task that issues

        SELECT table1.field1, 

               table1.field2, 

               'dbname' as field3

        FROM ProgressDatabase.table1

  • RE: Using DTS to import XML files

    I haven't attempted what you are trying to do, but it seems like you could use DTS to import the document using the Text File (source) object.  Do a search...

  • RE: Error 8114

    Take a look at the Language setting at the server level, it determines the date format.  US date format is month before day: today is 1/9/2005 or 2005-01-09.  I notice in your...

  • RE: real newie on derived columns

    You can't really join on a derived column because the join happens before the column is derived.  But, if I understand your question correctly this should work:

    CREATE TABLE [dbo].[Table1] (

     [someother_column] [varchar]...

  • RE: manually copy database

    You don't have to do all of that scripting.  If you just do a backup, copy the .bak file to CD or tape and then to the second server  and do...

  • RE: shrinkdatabase

    The full backup doesn't affect the transaction log backup size.  For example, if you have a database set to the full recovery model, do daily full backups and forget to...

  • RE: log file is bigger than data file!!

    When you run the DBCC command, does it give an error message or timeout?  Did you do a log backup right before shrinking the log so that the data is...

  • RE: log file is bigger than data file!!

    This is the command I use on our data warehouse db.  A monthly build process causes the log file to grow really large.  This always works, but the recovery model...

Viewing 15 posts - 421 through 435 (of 582 total)