Viewing 15 posts - 391 through 405 (of 526 total)
Yeah! Great!
Catch is Ryan Naraine at eWeek (ref article) is that you need Windows XP...
February 17, 2005 at 4:11 pm
Just for grins read the SQL Mail thread. They don't want to give developers any access.
My company has 3-5 developers at any given time and I'm the only DBA....
February 17, 2005 at 3:50 pm
Okay.....this isn't as horrible as it looks...probably.
First off...
1. Make sure you have a lot of disk space free.
2. Are the disks on a...
February 17, 2005 at 2:02 pm
When you added the device before were you in the database you want to restore to?
Go to that database adn run "sp_helpdevice". If the "Full_Bak" is there do the sp_dropdevice....
February 17, 2005 at 10:01 am
Are you in the master database?
Go into the enterprise manager and -> Management -> Current Activity -> Process Info and look for any users of the database. Terminate their...
February 17, 2005 at 9:36 am
You need to be in the master database, not the one you are restoring. Also, no one else can be in that database.
Before actually starting the restore run the following...
February 17, 2005 at 9:06 am
It Would be something like this:
sp_addumpdevice @devtype = 'DISK', @logicalname = 'Full_Bak', @physicalname = 'E:\Backup_Dir\FileName.BAK' GO RESTORE DATABASE DBname FROM Full_Bak WITH RECOVERY, REPLACE , STATS, ...
February 17, 2005 at 8:16 am
Welcome to the madhouse.
INSERT INTO table2 (firstname, lastname, email) SELECT firstname, lastname, firstname + '.'...
February 15, 2005 at 8:09 am
The number of original hackers is a small percentage of the overall number of malware inventors. A large number are just script kiddies that piggy-back on the good hackers....
February 11, 2005 at 7:43 am
My suggestion: add a unique column on the table. Probably just add an identity column.
That way the select becomes
select * from sample_table where id_col in (select id_col ...
February 7, 2005 at 2:38 pm
Hey what about Arena football. Not quite the same but it works in a pinch.
February 7, 2005 at 6:36 am
Do you have the "Auto Close" checked?
Do you have "Auto Shrink" checked?
Do you attempt to backup the mdf/ldf files?
Do you have a SQL Agent Backup?
February 3, 2005 at 8:45 am
This script will kill all users in every database. You can refine it by putting a where clause in the 'LoginCursor' declaration.
USE MASTER GO SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO CREATE...
February 2, 2005 at 12:44 pm
I have a a stored procedure, I've uploaded to the contribution center and is pending approval, that reads through the list of databases and stores the the data you want...
February 2, 2005 at 9:49 am
Simple answer: Yes.
The long answer: SQL Mail requires a MAPI compliant server to connect with directly and work. Because you are using POP3 it doesn't support the same authentication methods...
February 2, 2005 at 9:42 am
Viewing 15 posts - 391 through 405 (of 526 total)