Viewing 15 posts - 2,896 through 2,910 (of 3,011 total)
I have never heard of this happening.
Have you considered the possibility of human error?
March 12, 2007 at 1:45 pm
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...
March 12, 2007 at 9:02 am
So what happened when you logged onto the server with the SQL Server Agent service account and ran the package?
March 10, 2007 at 4:38 pm
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...
March 10, 2007 at 2:03 pm
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
March 9, 2007 at 11:14 pm
If you are running SQL Server 2000 Standard Edition, SQL Server can only use 2 GB of memory.
March 9, 2007 at 6:10 pm
Just put in the date and time you want to start with:
where date1 > '20070308 02:45:00.000' AND date2 <= GETDATE()
March 9, 2007 at 7:13 am
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...
March 8, 2007 at 9:08 am
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...
March 8, 2007 at 7:07 am
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?
March 8, 2007 at 6:37 am
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...
March 7, 2007 at 5:49 pm
select MM = right(100+month(getdate()),2)
MM ---- 03
(1 row(s) affected)
March 7, 2007 at 5:24 pm
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)
March 7, 2007 at 5:16 pm
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...
March 7, 2007 at 3:59 pm
You can only have one time zone in Windows set as your active time zone, so it will follow the settings for that.
March 7, 2007 at 7:23 am
Viewing 15 posts - 2,896 through 2,910 (of 3,011 total)