Now, we are going to retrive the file details from AllDocs Database. Which has the informations about the files stored in SharePoint List or Library.
– Returns all document from all lists availabe in WebApplication
SELECT AllDocs.Leafname AS FileName’,
AllDOcs.Dirname AS ‘Folder Path’,
AllLists.tp_Title AS ‘List Title’,
Webs.Title AS ‘Web Title’
FROM AllDocs
JOIN AllLists
ON
AllLists.tp_Id=AllDocs.ListId
JOIN Webs
ON
Webs.Id=AllLists.tp_WebId
ORDER BY webs.title
If you need the file informations about particular document type. Use [...]
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 ID’ from webs inner [...]
Microsoft released the Silverlight 3 Beta and Microsoft Expression Blend 3 Preview at Mix09.
Just browse the follwoing links to know more information about the releases.
What’s New in Expression Blend 3 Preview
Silverlight 3 Beta
* Silverlight 3 is now available to developers for testing purposes
Download Links
Silverlight 3 Beta – Windows Developer Runtime
Silverlight 3 Beta – Mac Developer [...]
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.
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
The configuration database contains data about all the databases [...]
The security validation for this page is invalid. Click Back in your Web browser, refresh the page, and try your operation again.
The above error will be thrown at the time of updating Library or Lists items due to authentication problem, or We didn’t have the rights to update the items.
By using the follwoing code, We [...]
In this post, I am going to explain about downloading a document from sharepoint library using webservice, For that we need following things,
Read the contents from Document, located in SharePoint Library
Create and store the contents on a new document in Local Machine
To get the contents from Document under Sharepoint library,we shall use the GetItem method [...]
This was the error, i recieved recently when i open an Excel sheet in browser. I didn’t recived this error before, so i searched in recent log file. That file list out the following line
03/04/2009 14:27:33.07 w3wp.exe (0×14C4) 0×020C Excel Services Excel Services Web Front End 5pad Critical [...]
