Viewing 15 posts - 26,326 through 26,340 (of 26,487 total)
And what about the filename for the backup file? What is it?
November 6, 2006 at 1:18 pm
What exactly are you entering in the destination, and how are you entering it?
November 6, 2006 at 1:09 pm
Post the SQL command you are using to backup your database. It will help in debugging the error. Also, be sure that the user that SQL Server runs under has...
November 6, 2006 at 12:53 pm
Yes, you can using EM. Just be sure you have the transaction log backups running, as the Full and Differential backups do not truncate the transaction log.
November 3, 2006 at 2:18 pm
Mirroring was enabled with Service Pack 1 for SQL Server 2005 and is now supported by Microsoft.
November 3, 2006 at 12:48 pm
Loner, I think there is a slight logic error in your SQL. Shouldn't the where clause look like this:
WHERE t.pk_ticket = '34950' and DATEDIFF(hour, t.createdate, c.createdate) > 24
November 3, 2006 at 12:37 pm
Try this in a test database first:
update dbo.table1 set
Division = t2.Division
from
dbo.table1 t1
inner join dbo.table2 t2
on (t1.[Salon #] = t2.[Salon #])
November 3, 2006 at 10:56 am
The databases you are trying to backup are probably set to SIMPLE recovery mode. In this mode, transaction log backups can not be done, as the transaction log is truncated...
November 3, 2006 at 10:50 am
It also depends on where you are adding columns. If you are adding columns between existing columns, then the system needs to recreate the table and move data. If you...
November 3, 2006 at 10:01 am
Here is your select statement:
select
(len(ivrs)-len(replace(ivrs,'7104','')))/len('7104')
where
projectid = 2223
and systemid = 6
and calldatetime between '2006-10-01 00:00:00' and '2006-10-31 23:59:59'
and attresult in (2)
Based on this, there...
November 2, 2006 at 5:44 pm
Have you checked the properties of your source text file in your DTS package? I have seen the problem you encountered, and the fix was to set the text delimiter...
November 2, 2006 at 4:47 pm
Just curious, but I don't see a FROM in the SELECT, is something missing?
November 2, 2006 at 4:38 pm
Googling Hyderabad it looks like it is in India:
Hyderabad, the fifth largest metropolis of India, is the state capital of Andhra Pradesh, known for its... |
November 2, 2006 at 10:42 am
On the csv source in you DTS package, be sure you have the Text Qualifier set to Double Quote ". It sounds like it may be set to none.
hth
November 2, 2006 at 6:53 am
Full backups do not truncate the transaction logs, only transaction log backups do that. During a full backup, only enough of the transaction log is backed up to ensure a...
October 31, 2006 at 11:12 am
Viewing 15 posts - 26,326 through 26,340 (of 26,487 total)