• MOSS

    Error Tips -1

    by  • September 22, 2009 • MOSS, SharePoint • 0 Comments

    An error occurred during the processing of . Only Content controls are allowed directly in a content page that contains Content controls. I got this strange error when modifying the page under SharePoint library, i bit little confused when this error happens. For a couple of minutes i look the code and tags, then i [...]

    Read more →

    User Information List – URL

    by  • April 3, 2009 • MOSS, SharePoint • 2 Comments

    In my WSS – User Information List post, I’ll list out the fields available under hidden “User Information List”. Now i’ll like to share the details of URL for that “User Information List”. By using follwoing code, we can get the Users list url, SPList userList = SPContext.Current.Web.SiteUserInfoList; string url = userList.Forms[PAGETYPE.PAGE_DISPLAYFORM].Url; the above code will [...]

    Read more →

    SharePoint Database SQL Query Tips2

    by  • March 19, 2009 • MOSS, SharePoint • 3 Comments

    Today, we are going to see the query for returning Webs and Site Collections available in the Database (WebApplication). –Returns Total Number of Site Collections in WebApplication select  count(*) as ‘Total Site Collection’ from sites –Returns Root Site Title for each Site Collection available in WebApplication  select Title as ‘Root Web Title’, Sites.RootWebId, Sites.Id as ‘Site Collection [...]

    Read more →

    SharePoint Database SQL Query Tips1

    by  • March 18, 2009 • MOSS, SharePoint • 0 Comments

    Today onwards on daily basis, I decided to post the Sql Query to access the SharePoint Databases. To know more about the databases in Sharepoint , check my SharePoint Databases Post. To retrieve all lists from the database, use the following query, select AllLists.tp_Title as ‘List Title’,webs.Title as ‘Web Title’ from dbo.AllLists as AllLists inner [...]

    Read more →

    Excel Service Links

    by  • March 14, 2009 • Excel Services, MOSS, SharePoint, WebService • 0 Comments

    I’m just researching on Excel Services.I found some posts, are usefull to me, so i like to share with you all. MSDN Blog – Excel Services Cum Grano Salis Blog MSDN Library Microsoft Office Online – Excel Services Click on the above links to navigate to those links. Blog this! Bookmark on Delicious Digg this post Recommend [...]

    Read more →

    SharePoint Databases

    by  • March 10, 2009 • MOSS, SharePoint • 4 Comments

    I did some research on SharePoint Databases and how are they providing datas to SharePoint sites?. Here i am come up with some details of Databases used in SharePoint. Database Name Description Availablity SharePoint_AdminContent_ GUID This is the Central Admin Content database, is used to store all WSS 3.0 / MOSS content. WSS3.0, MOSS  SharePoint_Config [...]

    Read more →

    MOSS 2007 Samples

    by  • August 10, 2007 • MOSS, SharePoint • 0 Comments

    Check this link for Creating a Custom User Site Provisioning Solution with Office SharePoint Server 2007  and download a 6 MOSS 2007 samples. This link contains 1 article and 6 samples which gives you the little idea about Infopath forms, Workflows and User access in BDC, AD using MOSS. Blog this! Bookmark on Delicious Digg this post Recommend [...]

    Read more →