Viewing 15 posts - 1 through 15 (of 17 total)
Doh - shoulda known that. Thanks.
September 30, 2008 at 9:00 pm
This is a SQL2005 database, and the Properties/Files page was disabled - well, at least I didn't see any files listed. I looked up the ALTER DATABASE MODIFY FILE syntax,...
December 14, 2006 at 10:43 pm
Ok. So the next obvious question - how to I grow the log file? (Sorry, I'm pretty experienced at coding for SQL Server, but at these administration things I'm pretty...
December 14, 2006 at 7:37 am
Well I did notice that after running the backup log my available free space went from 1.16 MB to 16.73 MB, so it sure did something. I sent an email...
December 14, 2006 at 6:59 am
I tried the WITH TRUNCATE_ONLY option. It is the same syntax for SQL2005, and it executed successfully, but I am still getting transaction log full error when trying to copy...
December 14, 2006 at 6:40 am
Hey John, thanks - I had to make a couple of minor tweaks, but your method worked. That's just what I was looking for! Thanks again.
November 21, 2006 at 11:17 pm
Somebody replied to me in another post. You can't use the "Optimize for many tables" option if you are going to keep identity inserts. Nowhere are you warned that using...
September 27, 2006 at 10:00 am
I'm curious about the WITH (FIRTROWFAST). I searched help in SQL Server 2005 and google didn't get any hits. Is there a typo? WHat is this?
September 7, 2006 at 7:02 am
Thank you, sir! That did the trick.
I must say that behavior is VERY counter intuitive.
July 26, 2006 at 7:34 am
Fortunately I am in luck! I had one instance created on C:, the first one I did before I knew how to target a different drive, and others on D:....
December 20, 2005 at 6:47 am
Yes Orders.ORDER_ID is the primary key (identity column). OrderStatus has a STATUS_ID primary key which is also an identity column, plus an index on ORDER_ID + STATUS_DATE. I thought...
November 9, 2005 at 5:21 pm
Even better, I was able to turn it into a UDF
CREATE FUNCTION [dbo].[GetPrice]
(@ProdCode VARCHAR(8),
@PriceLevel INT)
RETURNS MONEY AS
BEGIN
DECLARE @Price MONEY
SELECT @Price = CASE
WHEN PRICE4 > 0.00 AND...
October 12, 2005 at 2:55 pm
Works like a charm! Man, I was trying things with all kinds of if else's - didn't think of putting multiple conditions in the WHEN clauses.
Thanks!
October 12, 2005 at 2:22 pm
I ran into a similar problem. I had an ASP.Net website I was developing using a local MSDE SQL Server 2000 instance, which used dbo. I went to upload...
June 22, 2005 at 6:54 am
Best one I've seen is Programming Microsoft ASP.NET, by Dino Esposito, Microsoft Press.
Mircrosoft also has a number of webcasts, the Essential ASP.Net by Fritz Onion being good ones
June 22, 2005 at 6:38 am
Viewing 15 posts - 1 through 15 (of 17 total)