# |
Seconds Since First Hit |
Trace |
Command Type |
Command Text |
Parameters |
Execution Time |
1. |
0 |
DBInterface.GetDataTable; HTMLContent.GetHTMLContent; HTMLContent..ctor; MasterPage.get_HtmlContent; show |
Text |
SELECT TOP(1) '0' AS ArticleID, 0 As ID, Product.MetaTitle As PageTitle, Product.MetaDescription As PageMetaDesc, Product.MetaKeywords As PageMetaKwords, Product.Title As PageHeading, '' As PageContent, '' As PageContent2, '' As PageContent3, '' As PageContent4, '' As PageContent5, '' As PageContent6, '' As StartDate, '' As EndDate, '' As Thumbnail, 0 As NumLatestArticles, 0 As HasArticles, '' As UserControl, 0 As PageLayout FROM PageURLs LEFT OUTER JOIN Product ON PageURLs.EntityID = Product.ProductID WHERE PageURLs.PageURL = '/990105-xxx-990105-xxx-m-f-xxx-ft-you-specify-length--1369.html' AND PageURLs.Type='product' show |
- |
0.0156261 |
2. |
0 |
DBInterface.GetDataTable; BaseUser.GetDefaultSearch; UserSession.get_DefaultSearchAttribute; PageManager.get_CategoryMenu; show |
StoredProcedure |
[dbo].[DefaultSearchAttributeGetByUserID] |
@g_UserID =273c70c3-3db8-47eb-8469-d9b318616d59
|
0 |
3. |
0.2500211 |
DBInterface.GetDataTable; Menu.GetMenuContent; Menu.get_MenuContent; MasterPage.Page_Load; show |
Text |
DECLARE @StartingID INT;
SET @StartingID = 0;
DECLARE @Tree TABLE(TreeID INT IDENTITY PRIMARY KEY, Level INT, ParentTreeID INT, [Path] VARCHAR(2000), PageID_Path VARCHAR(2000), PageID INT NOT NULL);
DECLARE @RowCount INT, @Level INT, @DelCount INT;
SET NOCOUNT ON;
SET @Level = 0;
INSERT INTO @Tree(PageID, Level) VALUES (@StartingID, @Level);
SET @RowCount = @@ROWCOUNT;
UPDATE @Tree SET Path = STR(TreeID, 10, 0) + '.', PageID_Path = CAST(PageID AS VARCHAR(10)) + '\';
WHILE @RowCount > 0
BEGIN
SET @Level = @Level + 1;
INSERT INTO @Tree(Level, ParentTreeID, PageID)
SELECT @Level, t.TreeId, PageURLs.ID
FROM PageURLs
LEFT OUTER JOIN @Tree t ON ISNULL(PageURLs.ParentID,0) = t.PageID AND t.Level = (@Level - 1)
INNER JOIN HTMLContent ON HTMLContent.ID = PageURLs.EntityID
LEFT OUTER JOIN HTMLContent_XREF ON HTMLContent.ID = HTMLContent_XREF.ContentID
WHERE 1=1
AND (
1=1
AND HTMLContent.SiteID = 1
AND PageURLs.[Type] = 'content'
AND HTMLContent.IsMenuItem = 'True'
AND @Level <= 20
)
ORDER BY COALESCE(OrderPriority, 1000), PageKey
;
SET @RowCount = @@ROWCOUNT;
UPDATE t1 SET t1.[Path] = t2.[Path] + STR(t1.TreeID, 10, 0) + '.', t1.PageID_Path = t2.PageID_Path + CAST(t1.PageID AS VARCHAR(10)) + '\' FROM @Tree t1 INNER JOIN @Tree t2 ON t1.ParentTreeID = t2.TreeID WHERE t1.Level = @Level AND t2.PageID_Path NOT LIKE '%' + CAST(t1.PageID AS VARCHAR(10)) + '\%';
DELETE FROM @Tree WHERE PageID_Path IS NULL;
SET @DelCount = @@ROWCOUNT;
SET @RowCount = (@RowCount - @DelCount);
END;
SELECT
[Path], t.PageID, t.Level
, (SELECT COUNT(HTMLContent_XREF1.ID) FROM HTMLContent_XREF AS HTMLContent_XREF1 LEFT JOIN HTMLArticles AS HTMLArticles1 ON HTMLContent_XREF1.ContentID = HTMLArticles1.ContentID LEFT JOIN HTMLContent AS HTMLContent1 ON HTMLContent1.ID = HTMLContent_XREF1.ContentID WHERE HTMLContent_XREF1.ParentContentID = HTMLContent.ID AND (HTMLContent1.IsMenuItem = 'True' OR HTMLContent1.ID IS NULL) AND HTMLArticles1.ID IS NULL) As NumChildren,
HTMLContent.ID,
HTMLContent.PageKey,
HTMLContent.IsMenuItem,
HTMLContent.MenuText,
HTMLContent.MenuURL,
HTMLContent.PageHeading,
HTMLContent.HasArticles,
HTMLContent_XREF.ParentContentID
FROM @Tree t
INNER JOIN PageURLs ON t.PageID = PageURLs.ID
INNER JOIN HTMLContent ON HTMLContent.ID = PageURLs.EntityID
LEFT OUTER JOIN HTMLContent_XREF ON HTMLContent.ID = HTMLContent_XREF.ContentID
WHERE 1=1
ORDER BY [Path]
; show |
- |
0.2187765 |
4. |
0.4688003 |
DBInterface.GetDataTable; Menu.GetMenuContent; Menu.get_MenuContent; MasterPage.Page_Load; show |
Text |
DECLARE @StartingID INT;
SET @StartingID = 0;
DECLARE @Tree TABLE(TreeID INT IDENTITY PRIMARY KEY, Level INT, ParentTreeID INT, [Path] VARCHAR(2000), PageID_Path VARCHAR(2000), PageID INT NOT NULL);
DECLARE @RowCount INT, @Level INT, @DelCount INT;
SET NOCOUNT ON;
SET @Level = 0;
INSERT INTO @Tree(PageID, Level) VALUES (@StartingID, @Level);
SET @RowCount = @@ROWCOUNT;
UPDATE @Tree SET Path = STR(TreeID, 10, 0) + '.', PageID_Path = CAST(PageID AS VARCHAR(10)) + '\';
WHILE @RowCount > 0
BEGIN
SET @Level = @Level + 1;
INSERT INTO @Tree(Level, ParentTreeID, PageID)
SELECT @Level, t.TreeId, PageURLs.ID
FROM PageURLs
LEFT OUTER JOIN @Tree t ON ISNULL(PageURLs.ParentID,0) = t.PageID AND t.Level = (@Level - 1)
INNER JOIN HTMLContent ON HTMLContent.ID = PageURLs.EntityID
LEFT OUTER JOIN HTMLContent_XREF ON HTMLContent.ID = HTMLContent_XREF.ContentID
WHERE 1=1
AND (
1=1
AND HTMLContent.SiteID = 1
AND PageURLs.[Type] = 'content'
AND HTMLContent.IsMenuItem = 'True'
AND @Level <= 20
)
ORDER BY COALESCE(OrderPriority, 1000), PageKey
;
SET @RowCount = @@ROWCOUNT;
UPDATE t1 SET t1.[Path] = t2.[Path] + STR(t1.TreeID, 10, 0) + '.', t1.PageID_Path = t2.PageID_Path + CAST(t1.PageID AS VARCHAR(10)) + '\' FROM @Tree t1 INNER JOIN @Tree t2 ON t1.ParentTreeID = t2.TreeID WHERE t1.Level = @Level AND t2.PageID_Path NOT LIKE '%' + CAST(t1.PageID AS VARCHAR(10)) + '\%';
DELETE FROM @Tree WHERE PageID_Path IS NULL;
SET @DelCount = @@ROWCOUNT;
SET @RowCount = (@RowCount - @DelCount);
END;
SELECT
[Path], t.PageID, t.Level
, (SELECT COUNT(HTMLContent_XREF1.ID) FROM HTMLContent_XREF AS HTMLContent_XREF1 LEFT JOIN HTMLArticles AS HTMLArticles1 ON HTMLContent_XREF1.ContentID = HTMLArticles1.ContentID LEFT JOIN HTMLContent AS HTMLContent1 ON HTMLContent1.ID = HTMLContent_XREF1.ContentID WHERE HTMLContent_XREF1.ParentContentID = HTMLContent.ID AND (HTMLContent1.IsMenuItem = 'True' OR HTMLContent1.ID IS NULL) AND HTMLArticles1.ID IS NULL) As NumChildren,
HTMLContent.ID,
HTMLContent.PageKey,
HTMLContent.IsMenuItem,
HTMLContent.MenuText,
HTMLContent.MenuURL,
HTMLContent.PageHeading,
HTMLContent.HasArticles,
HTMLContent_XREF.ParentContentID
FROM @Tree t
INNER JOIN PageURLs ON t.PageID = PageURLs.ID
INNER JOIN HTMLContent ON HTMLContent.ID = PageURLs.EntityID
LEFT OUTER JOIN HTMLContent_XREF ON HTMLContent.ID = HTMLContent_XREF.ContentID
WHERE 1=1
ORDER BY [Path]
; show |
- |
0.2187792 |
5. |
0.4844274 |
DBInterface.get_oSQLDataReader; RecentlyViewedProducts.LoadRecentProductsByProductID; RecentlyViewedProducts..ctor; ProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[RecentlyViewedListLoadByEntityType] |
@UserID=273c70c3-3db8-47eb-8469-d9b318616d59 @EntityType=product @RowCount=5 @SiteID=1
|
0.0156271 |
6. |
0.4844274 |
DBInterface.GetDataTable; ProductDeprecated.LoadProductFromURL; ProductDeprecated..ctor; ProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[PageUrlLoadByPrimaryKey] |
@PageUrl=/990105-xxx-990105-xxx-m-f-xxx-ft-you-specify-length--1369.html @Type=PRODUCT
|
0 |
7. |
0.500039 |
DBInterface.get_oSQLDataReader; ProductDeprecated._FETCH; ProductDeprecated.LoadProductFromURL; ProductDeprecated..ctor; show |
StoredProcedure |
[dbo].[ProductLoadByPrimaryKey] |
@ProductID=1369 @SiteID=1 @UserID=273c70c3-3db8-47eb-8469-d9b318616d59
|
0 |
8. |
0.500039 |
DBInterface.GetDataTable; Categories.LoadCategoryByProductId; Categories..ctor; ProductDeprecated..ctor; show |
StoredProcedure |
[dbo].[CategoryListByProductId] |
@ProductId=1369 @SiteID=1 @ShowHidden=False
|
0 |
9. |
0.500039 |
DBInterface.GetDataTable; Category.LoadCategoryFromURL; Category..ctor; ProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[PageUrlLoadByPrimaryKey] |
@Type=CATEGORY
|
0 |
10. |
0.500039 |
DBInterface.GetDataTable; ProductDetail.LoadProductDetails; ProductDetail.Page_Load; Control.OnLoad; show |
StoredProcedure |
[dbo].[DocumentLoadByProductKey] |
@ProductID=1369
|
0 |
11. |
0.5157494 |
DBInterface.get_oSQLDataReader; StoreImages.LoadImagesByProductKey; StoreImages..ctor; ProductDeprecated.get_Images; show |
StoredProcedure |
[dbo].[ImageLoadByProductKey] |
@ProductID=1369
|
0.0157104 |
12. |
0.5157494 |
DBInterface.get_oSQLDataReader; Related_Products.LoadRelatedProductsByProductID; Related_Products..ctor; ProductDeprecated.get_RelatedProducts; show |
StoredProcedure |
[dbo].[ProductRelationshipListByProductID] |
@ProductID=1369 @SiteID=1
|
0 |
13. |
0.5157494 |
DBInterface.get_oSQLDataReader; Related_Products.LoadBoughtProducts; Related_Products..ctor; ProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[CL_procGetOtherProductsBought] |
@ProductID=1369 @SiteID=1
|
0 |
14. |
0.5157494 |
DBInterface.get_oSQLDataReader; Accessories.LoadAccessoriesByProductKey; Accessories..ctor; ProductDeprecated.get_Accessories; show |
StoredProcedure |
[dbo].[AccessoryListLoadByProductKey] |
@ProductID=1369 @ShowHidden=0
|
0 |
15. |
0.5312956 |
DBInterface.get_oSQLDataReader; Skus.LoadSkusByCategory; Skus..ctor; ProductDeprecated.get_Skus; show |
StoredProcedure |
[dbo].[SKUListLoadByProductKey] |
@ProductID=1369 @SiteID=1 @UserID=273c70c3-3db8-47eb-8469-d9b318616d59 @ShowHidden=0
|
0.0155462 |
16. |
0.5469177 |
DBInterface.get_oSQLDataReader; Skus.LoadSkuPricing; Skus.LoadSkusByCategory; Skus..ctor; show |
StoredProcedure |
[dbo].[PriceListBySkuId] |
@SkuList=1371 @UserID=273c70c3-3db8-47eb-8469-d9b318616d59 @SiteID=1
|
0.0156221 |
17. |
0.5469177 |
DBInterface.GetDataTable; BaseUser.GetDefaultSearch; UserSession.get_DefaultSearchAttribute; ProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[DefaultSearchAttributeGetByUserID] |
@g_UserID =273c70c3-3db8-47eb-8469-d9b318616d59
|
0 |
18. |
0.5625415 |
DBInterface.GetDataTable; ProductAttributes.LoadProductAttributes; ProductAttributes..ctor; Sku.get_Attributes; show |
StoredProcedure |
[dbo].[getProductAttributesBySkuId] |
@SkuId=1371
|
0.0156238 |
19. |
0.5625415 |
DBInterface.GetDataTable; ProductAttributes.LoadProductAttributes; ProductAttributes..ctor; ProductDeprecated.get_Attributes; show |
StoredProcedure |
[dbo].[getProductAttributesByProductId] |
@ProductId=1369
|
0 |
20. |
0.5625415 |
DBInterface.GetDataTable; ProductDeprecated.GetDistinctSKUAttributes; ProductDeprecated.get_DistinctSkuAttributes; ProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[AttributesDistinctByProductID] |
@ProductId=1369
|
0 |
21. |
0.5781695 |
DBInterface.GetDataTable; RegionLists.CountryListALL; ProductDetail.LoadDropDowns; ProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[procGetAllCountryList] |
- |
0.015628 |
22. |
0.5781695 |
DBInterface.GetDataTable; RegionLists.StatesByCountryList; ProductDetail.UpdateStates; ProductDetail.LoadDropDowns; show |
StoredProcedure |
[dbo].[procGetCountryStatesList] |
@CountryCode=USA
|
0 |
23. |
0.5781695 |
DBInterface.GetDataTable; ProductDeprecated.LoadProductFromURL; ProductDeprecated..ctor; QuickViewProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[PageUrlLoadByPrimaryKey] |
@PageUrl=/990105-xxx-990105-xxx-m-f-xxx-ft-you-specify-length--1369.html @Type=PRODUCT
|
0 |
24. |
0.6094433 |
DBInterface.get_oSQLDataReader; ProductDeprecated._FETCH; ProductDeprecated.LoadProductFromURL; ProductDeprecated..ctor; show |
StoredProcedure |
[dbo].[ProductLoadByPrimaryKey] |
@ProductID=1369 @SiteID=1 @UserID=273c70c3-3db8-47eb-8469-d9b318616d59
|
0.0312738 |
25. |
0.6094433 |
DBInterface.GetDataTable; Categories.LoadCategoryByProductId; Categories..ctor; ProductDeprecated..ctor; show |
StoredProcedure |
[dbo].[CategoryListByProductId] |
@ProductId=1369 @SiteID=1 @ShowHidden=False
|
0 |
26. |
0.6094433 |
DBInterface.GetDataTable; Category.LoadCategoryFromURL; Category..ctor; QuickViewProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[PageUrlLoadByPrimaryKey] |
@Type=CATEGORY
|
0 |
27. |
0.6094433 |
DBInterface.get_oSQLDataReader; Skus.LoadSkusByCategory; Skus..ctor; ProductDeprecated.get_Skus; show |
StoredProcedure |
[dbo].[SKUListLoadByProductKey] |
@ProductID=1369 @SiteID=1 @UserID=273c70c3-3db8-47eb-8469-d9b318616d59 @ShowHidden=0
|
0 |
28. |
0.6250464 |
DBInterface.GetDataTable; ProductAttributes.LoadProductAttributes; ProductAttributes..ctor; Sku.get_Attributes; show |
StoredProcedure |
[dbo].[getProductAttributesBySkuId] |
@SkuId=1371
|
0 |
29. |
0.6250464 |
DBInterface.GetDataTable; QuickViewProductDetail.LoadProductDetails; QuickViewProductDetail.Page_Load; Control.OnLoad; show |
StoredProcedure |
[dbo].[DocumentLoadByProductKey] |
@ProductID=1369
|
0 |
30. |
0.6250464 |
DBInterface.get_oSQLDataReader; StoreImages.LoadImagesByProductKey; StoreImages..ctor; ProductDeprecated.get_Images; show |
StoredProcedure |
[dbo].[ImageLoadByProductKey] |
@ProductID=1369
|
0 |
31. |
0.6250464 |
DBInterface.get_oSQLDataReader; Related_Products.LoadRelatedProductsByProductID; Related_Products..ctor; ProductDeprecated.get_RelatedProducts; show |
StoredProcedure |
[dbo].[ProductRelationshipListByProductID] |
@ProductID=1369 @SiteID=1
|
0 |
32. |
0.6250464 |
DBInterface.get_oSQLDataReader; Skus.LoadSkusByCategory; Skus..ctor; ProductDeprecated.get_Skus; show |
StoredProcedure |
[dbo].[SKUListLoadByProductKey] |
@ProductID=1369 @SiteID=1 @UserID=273c70c3-3db8-47eb-8469-d9b318616d59 @ShowHidden=0
|
0 |
33. |
0.6406701 |
DBInterface.get_oSQLDataReader; Skus.LoadSkuPricing; Skus.LoadSkusByCategory; Skus..ctor; show |
StoredProcedure |
[dbo].[PriceListBySkuId] |
@SkuList=1371 @UserID=273c70c3-3db8-47eb-8469-d9b318616d59 @SiteID=1
|
0 |
34. |
0.6406701 |
DBInterface.GetDataTable; BaseUser.GetDefaultSearch; UserSession.get_DefaultSearchAttribute; QuickViewProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[DefaultSearchAttributeGetByUserID] |
@g_UserID =273c70c3-3db8-47eb-8469-d9b318616d59
|
0 |
35. |
0.6406701 |
DBInterface.GetDataTable; ProductAttributes.LoadProductAttributes; ProductAttributes..ctor; Sku.get_Attributes; show |
StoredProcedure |
[dbo].[getProductAttributesBySkuId] |
@SkuId=1371
|
0 |
36. |
0.6406701 |
DBInterface.GetDataTable; ProductAttributes.LoadProductAttributes; ProductAttributes..ctor; ProductDeprecated.get_Attributes; show |
StoredProcedure |
[dbo].[getProductAttributesByProductId] |
@ProductId=1369
|
0 |
37. |
0.6406701 |
DBInterface.GetDataTable; ProductDeprecated.GetDistinctSKUAttributes; ProductDeprecated.get_DistinctSkuAttributes; QuickViewProductDetail.LoadProductDetails; show |
StoredProcedure |
[dbo].[AttributesDistinctByProductID] |
@ProductId=1369
|
0 |
38. |
0.6406701 |
DBInterface.GetDataTable; CartManager.LoadCartItems; CartManager.get_CartItems; MasterPage.UpdateCartTotals; show |
StoredProcedure |
[dbo].[Cart_LoadByUserID] |
@UserID=273c70c3-3db8-47eb-8469-d9b318616d59 @SiteID=1
|
0 |
|
|
|
|
|
Total DB Execution Time |
0.5782132 |