Viewing 15 posts - 16 through 30 (of 32 total)
You may want to consider using the code above with an update statement to fix the data in the table.
July 16, 2009 at 5:48 am
Try this:
use master;
go
select
db.[name] as 'Database Name'
,db.crdate
,(((CAST(af. as DECIMAL(18,4)) * 8192) /1024) /1024) as 'File Size (MB)'
from sys.sysdatabases db
inner join sys.sysaltfiles af
on db.dbid = af.dbid
where [fileid] in (1) and db.crdate <...
July 15, 2009 at 2:16 pm
Since it is a QA box why don't you set the recovery model to simple and back it up nightly. We only backup the system databases on our QA...
July 15, 2009 at 1:20 pm
I have found that the system tables do not allow you to right click and select Open Table. You have to issue a select command:
SELECT * FROM sysjobs
July 15, 2009 at 1:11 pm
You may want to consider hiring a DBA to come in and fix your issues or at least advise you before you do anything. You can study up on...
July 15, 2009 at 7:13 am
Are users entering data into the destination database? If so are they using the same PK (eg. identity column)?
July 15, 2009 at 6:54 am
This is a concept but could you load the sting into a temp table using your function. Create the temp table with an identity column called sortid
create table #test1...
July 14, 2009 at 1:07 pm
You need to find the application or user that is connecting and stop that application or service. You should be able to connect at that point.
You could get luck...
July 13, 2009 at 6:10 am
Try dropping the problem article and then readding it.
July 13, 2009 at 6:00 am
This may be caused by DTC not being configured for network access. This fixed the issue for me.
July 10, 2009 at 11:35 am
We have many instances and I have found the following issues:
1. It does use more system resources than one instance: you have two sets of system databases including tempdb and...
July 10, 2009 at 10:46 am
You could cast the fields to int (not sure if there is a more efficient way):
from table1 a inner join table2 b on
cast(a.order_no as int) = cast(b.order_no as int)
July 9, 2009 at 9:58 am
I have found that Windows Firewall can cause this issue. Check to see if that server has the firewall configured correctly.
July 8, 2009 at 6:22 pm
This may not be the answer you are looking for but one solution is to perform log backups more frequently.
July 8, 2009 at 6:18 pm
Viewing 15 posts - 16 through 30 (of 32 total)