Viewing 15 posts - 3,541 through 3,555 (of 7,503 total)
I would go for the solution Perry Whittle provided.
Use the alter database methode because this will always have you db defined at your sqlinstance, it will also keep all security...
August 21, 2009 at 6:40 am
Very nice way to tackle the issue of hardware replacement !
August 18, 2009 at 3:44 am
Thank you for this valuable feedback !
Keep in mind trace flag 4621 is only available with SP3
and is only advised if the combination of trace flags 4618 and 4610...
August 18, 2009 at 12:58 am
Did you manage to get smtp to work on your 64-bit win2008 ?
August 17, 2009 at 12:50 am
indeed ... as Lynn stated, use the column 'name' to order the result set and you'll be fine.
For you query the ordinal column 1 is the variable value for the...
August 11, 2009 at 2:34 pm
Did you try making an indexed view for the phone number part ?
I usually don't use indexed views, but if you insist on having a single query doing it all...
August 9, 2009 at 1:02 pm
Best is to capture this content for a while (to have persistent data)
select db_name(database_id) as DbName
, case db_id() when database_id then object_name(object_id)
else cast(object_id...
August 9, 2009 at 10:25 am
This backup of your database has been created using multiple backup files !
You need all files of that backup(set) to restore the database.
August 8, 2009 at 4:23 am
smtp & win2008 seem to have changes in setup compared to win2003.
Maybe this one helps ...
August 4, 2009 at 2:39 am
did you enable dbmail xps
-- enable db-mail
exec sp_configure 'show advanced options', 1;
RECONFIGURE;
GO
exec sp_configure 'Database Mail XPs', 1; -- 0 to Disable and 1 to enable
...
August 3, 2009 at 5:35 am
- is your mail server accepting smtp from your cluster nodes and sql instances (may need grants at mail software level on the mail server)
- is sqlbrowser running ?
...
August 2, 2009 at 3:11 am
altering to varchar(8000) is only a catalog operation (and maybe an index op if the column is indexed) because it stays the same datatype, only the var length changes.
Changing...
July 29, 2009 at 1:16 pm
Some samples (I'm not sure where I got them from) :
BEGIN TRY
-- Generate a divide-by-zero error.
SELECT 1/0;
END TRY
BEGIN CATCH
...
July 28, 2009 at 12:02 pm
peleg k (7/28/2009)
SET @Err = @@ERROR
SELECT @ErrorMessage = ERROR_MESSAGE(),
@ErrorSeverity = ERROR_SEVERITY(),
@ErrorState = ERROR_STATE();
END CATCH
IF @Err...
July 28, 2009 at 4:55 am
As you suffered, any DRP should include your "day to day working environment" as well.
Don't you just love those 1TB usb disks 😎
Combined with a good Ghost software it...
July 23, 2009 at 7:56 am
Viewing 15 posts - 3,541 through 3,555 (of 7,503 total)