Viewing 15 posts - 16 through 30 (of 83 total)
The customer_Detail is being locked. I am thinking that the indexes have not been reindexed in over a month and it could be causing the issue.
November 20, 2008 at 12:42 pm
You were absolutely correct.
This is the finished statement:
Select u.Dealer_Id, u.usage_date, u.usage_ipaddress, e.Employee_first_name, e.Employee_last_name
from usage_data u with (nolock)
Inner JOIN Employee e With (NoLock)
ON u.employee_id = e.employee_id
WHERE u.Dealer_id...
November 13, 2008 at 10:43 am
I used DBCC SHRINKFILE with EMPYFILE which moved whatever was left in the FileGroup to the PRIMARY and then it allowed me to remove the file group.
November 13, 2008 at 6:45 am
Let me phrase that, there is 0.25MB in the Blob File group which is preventing me from deleting it.
November 11, 2008 at 1:49 pm
Is it because I am trying to search for a string of numbers with a wild card?
eg. SELECT ticket_id,ticketnote_id ticketnote_byname, Ticketnote_text FROM DMS_TICKETNOTES
WHERE CONTAINS(TicketNote_Text, '"*998877*" ')
This is the string...
November 6, 2008 at 12:27 pm
Any other ideas? I even dropped the catalog and re-created it and it still doing the same thing.
November 6, 2008 at 12:22 pm
Tried the following:
SELECT ticket_id,ticketnote_id,ticketNote_text FROM dms_ticketnotes WITH (NOLOCK)
WHERE Freetext(*, '"*%009988"')
Order by Ticketnote_id
Still no records.
November 3, 2008 at 10:53 am
Thanks for all the advise. I have to figure something else out about the indexes because the database is too big for multiple full DB backups.
What would you recommed for...
October 15, 2008 at 1:47 pm
Cool. What is the ramification for changing the recovery mode of you database?
We currently in full recovery mode in production mode. But every Sunday we run a maintenance task the...
October 15, 2008 at 10:07 am
Then I just apply the transaction log backup to new database as I would normally?
October 15, 2008 at 8:46 am
Now the million dollar question. Is there was to restore the full database backup to another database name and then apply all the transaction log backup to the new database?
October 15, 2008 at 8:26 am
I found the issue was I trying to restore a log backup that was associated with the previous nights backups.
October 15, 2008 at 8:21 am
That worked great. But I need run into an issue in testing. We backup our production database to tape and also take t-log backup every hour to disk. We tried...
October 15, 2008 at 7:22 am
So if I were to go with a single file transaction log backup how would I setup the job?
here is a scenerion
M - Full DB Backup @ 12:00am
...
October 14, 2008 at 1:06 pm
Viewing 15 posts - 16 through 30 (of 83 total)