Forum Replies Created

Viewing 15 posts - 2,896 through 2,910 (of 3,011 total)

  • RE: Unique Constraint converting to Index

    I have never heard of this happening.

    Have you considered the possibility of human error?

     

     

     

  • RE: Is this a memory leak?

    I am not saying 4 GB with SQL Server Standard Edition it is a bad idea, but I just wanted to make sure he knew that it was memory that will...

  • RE: DTS Problem

    So what happened when you logged onto the server with the SQL Server Agent service account and ran the package?

     

  • RE: List Problem...

    Ok Jeff, with an invitation like that, I have to post.

    You can use function F_TABLE_DATE from the link below.  You can use it directly, or use it to load a...

  • RE: Cannot restore - Database in use even after kill process

    If you want to make sure the database is not in use, just set it offline before running the restore:

    use master
    alter database MyDatabase set offline with rollback immediate
    
  • RE: Is this a memory leak?

    If you are running SQL Server 2000 Standard Edition, SQL Server can only use 2 GB of memory.

     

     

  • RE: where date1 > ? AND date2 <= GETDATE() does not work in yukon

    Just put in the date and time you want to start with:

    where date1 > '20070308 02:45:00.000' AND date2 <= GETDATE() 
  • RE: Cheap Power

    Jay,

    I don't understand how you can say radioactive waste is a "manageable problem", unless what you mean is "drop it in a hole in the ground and let someone else...

  • RE: DTS Problem

    From your answer, I guess that means that didn't try logging onto the server with the SQL Server Agent service account and running the package.

    There are many thing that could...

  • RE: postgreSQL migration problem!!!!

    Wouldn't it be better to post on a forum where they answer questions about PostGreSQL, since that is what you are trying to develop?

     

  • RE: Cheap Power

    With nuclear power there is still the unsolved problem of dealing with waste.

    I don’t think the current schemes for storing high level waste for hundreds of thousands of years can...

  • RE: Datepart Month question

    select MM = right(100+month(getdate()),2)
    MM   
    ---- 
    03
    (1 row(s) affected)
     
  • RE: XML DATETIME CONVERSION FAILING TO CONVERT TO SQL DATETIME

    You will have to remove the UTC offset ('-05:00') before converting to datetime.

    select DATE = convert(datetime,substring('2007-01-31T13:47:27.25-05:00',1,22))
    DATE                                                   
    ------------------------------------------------------ 
    2007-01-31 13:47:27.250
    (1 row(s) affected)
    
  • RE: DTS Problem

    When you say it does not popup any dialog box, does that mean it dosn't do that when you log onto the server with the SQL Server Agent service account...

  • RE: Daylight Saving (DST) and SQL Server Scheduled Jobs

    You can only have one time zone in Windows set as your active time zone, so it will follow the settings for that.

     

     

     

     

Viewing 15 posts - 2,896 through 2,910 (of 3,011 total)