Forum Replies Created

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

  • 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.

     

     

     

     

  • RE: Grrr... Network idiots....

    Matt,

    I think you should tell the network guys you're sorry for screwing up their machine and promise not to do it again.

     

  • RE: Fields Concatenation in SQL Query

    What did you find when you tested it to see what happens?

     

     

  • RE: DTS Problem

    If you have Internet Explorer Enhanced Security installed on the server, it will cause a message box to pop-up when you attempt to run an executable.  Since there is no...

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