Viewing 15 posts - 256 through 270 (of 497 total)
GilaMonster (7/14/2008)
July 15, 2008 at 12:26 am
GilaMonster (7/14/2008)
Has the slow execution reoccured? Is it happening regularly?
As more general comments:
Why are you using dynamic SQL in one place? I can't see anything in there that would...
July 14, 2008 at 6:23 am
GilaMonster (7/14/2008)
Do you have contention for your procedure cache? (Are you seeing blocking with a [compile] description)
If you check perfmon,...
July 14, 2008 at 1:53 am
The image did not work. I think we should be able to upload small images directly into the post.
February 21, 2008 at 10:19 pm
Dave Balsillie (11/23/2007)
November 25, 2007 at 4:07 pm
Found a partial solution. If you run this macro in a workbook:
Sub RefreshOnOpen()
For Each pc In ActiveWorkbook.PivotCaches
pc.RefreshOnFileOpen = True
Next
End Sub
The workbook will try to refresh all external datasources. The...
September 24, 2007 at 8:30 pm
Just found it out: you have to manually backup and restore the database and the maintenance plan will pick it up.
September 18, 2007 at 6:11 pm
Sorry, I probably did not put it clear. I am not interested in the log backup files, but I am looking at the temp file which allows to keep databases in...
September 16, 2007 at 6:19 pm
Sorry, did not quite understand... Do you mean replacing this:
INSERT INTO OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 5.0;Database=C:\Temp\NorthwindTest.xls;',
'SELECT EmployeeID,LastName,FirstName FROM [Sheet1$]')
SELECT EmployeeID,LastName,FirstName FROM Northwind.dbo.Employees
with this:
INSERT INTO OPENROWSET('Microsoft.Jet.OLEDB.4.0',
'Excel 5.0;Database=C:\Temp\NorthwindTest.xls;',
'SELECT EmployeeID,LastName,FirstName...
September 2, 2007 at 8:00 pm
Just found this out. The article had only some of the columns replicated, so the command obviously could not be executed on the publisher table. As for the subscriber, the...
August 1, 2007 at 12:14 am
I already have some code which would filter out last week/day/hour from the log, but I would appreciate the code that works around the broken lines problem.
Thanks.
July 23, 2007 at 1:17 am
Just found this out:
C:\diskpart
DISKPART> select disk 0
DISKPART> list part
July 20, 2007 at 12:49 am
I've got the table name, and this SP does not touch the table at all, that is why I thought I could be wraped around into a transaction which first queries...
May 16, 2007 at 9:32 pm
Viewing 15 posts - 256 through 270 (of 497 total)