Viewing 15 posts - 256 through 270 (of 299 total)
Nicer & no trailing ',' - why did I go down the case route!
January 20, 2006 at 9:16 am
Lets hope it works!
HTH
January 20, 2006 at 7:24 am
In EM right mouse the DB in question -> Properties -> Options Tab -> Auto Shrink.
You may need to do this on all DB's
If you make new DB's check...
January 20, 2006 at 6:28 am
something like ..
create table tblTest
(Name char(20),
state1 char(2),
state2 char(2),
state3 char(2),
state4 char(2))
insert into tblTest values ('Fred',NULL,NULL,'CA',NULL)
insert into tblTest values ('Bill',NULL,'AZ','NY',NULL)
insert into tblTest values ('Joe',NULL,'CA',NULL,'WA')
SELECT Name +
CASE WHEN State1 IS NULL THEN...
January 20, 2006 at 6:07 am
I have had big problems doing SQL backups over the wire. Sql 2000 and Win Server 2003. There was an issue with SMB (Server Message Blocks?) where it looked like...
January 20, 2006 at 5:39 am
I would just sit back and wait until you notice the laptop getting hammered and then see what/who is hitting it.
January 19, 2006 at 8:34 am
I think you want
if EXISTS (select userid from main where userid=@userid) begin -- remove 'userid'
update statement goes here
end
else begin
insert statement goes here
end
January 19, 2006 at 7:51 am
OK so its definately SQL. Next step would be to put a trace on through SQL Profiler and see whats running on SQL.
January 19, 2006 at 7:44 am
On the Complete Backup tab there is the option 'Remove files older than ..'. this relates to retention of the Complete Backup.
This same option also appeaers on the Transaction Log...
January 19, 2006 at 7:14 am
I've not had this problem but I think you specify the retention period for the Complete Backup and Transaction Log Backup seperately. Have you set both?
January 19, 2006 at 6:41 am
I think I have seen this before when trying to backup the transaction log on a db set for simple recovery.
(slow day watching dts)
January 19, 2006 at 3:54 am
Tasks are stored in the system database msdb. I'm not sure how you would transfer them from one server to another other than by restoring msdb to the other server...
January 19, 2006 at 2:52 am
How do you know it's SQL?
January 19, 2006 at 2:48 am
Viewing 15 posts - 256 through 270 (of 299 total)