Change the Default Locations for Data and Log Files in SqlServer

By Default in SqlServer, new database files are being created and stored in %Program Files%\\Microsoft SQL Server\\MSSQLXXX.MSSQLSERVER\\MSSQL\\DATA. This path can be changed to desired or configured path. To change Data and log files path Connect to SqlServre using SSMS Select connected Server and then Properties From Server properties –> Select Page (left side) –> Database …

Change the Default Locations for Data and Log Files in SqlServer Read More »

TFS 2015 or Azure DevOps Pipeline Build Definition – setting output location

TFS 2013 Build Definition has an Output Location option (AsConfigured, PerProject, SingleFolder) but this option is not available in the later version. TFS 2013 is XAML based build definition, later versions new build definitions are added like vNext/YML. So in TFS 2015 or later versions if we use vNext/YML build definition this option is no …

TFS 2015 or Azure DevOps Pipeline Build Definition – setting output location Read More »

The page you selected contains a list that does not exist. It may have been deleted by another user.

Hai, If you are facing following error in Share Point 2010 Here it is the solution. if you are using host header for site, like my server name is siva-pc, so my site is http://siva-pc. but I am using alias for the site as localhost or some other name. so on the server if I …

The page you selected contains a list that does not exist. It may have been deleted by another user. Read More »

List does not exist error while using SharePoint services to get the List

Hai, If you get Microsoft.sharepoint.soap exception like below while using Share Point services to get the List <errorstring xmlns=\”http://schemas.microsoft.com/sharepoint/soap/\”> List does not exist. The page you selected contains a list that does not exist. It may have been deleted by another user. </errorstring> <errorcode xmlns=\”http://schemas.microsoft.com/sharepoint/soap/\”>0x82000006</errorcode> For this we have to check two things First one check …

List does not exist error while using SharePoint services to get the List Read More »

Programming Against a List Using the Lists Web Service

Hai, Here am going to program against lists in Share Point, which enables to manage Create, read, update and delete (CRUD) operations against the list. To do this follow the steps. Here we assume we have a list which already created in Share Point Portal. Assume the list name as \”StudentDetails\” and it has columns …

Programming Against a List Using the Lists Web Service Read More »

Common issue: new SPSite API call returns \”The Web application at http://server:port/ could not be found.\”

we receive following error message while working on ShrePoint server side object model \”The Web application at http://server:port/ could not be found. Verify that you have typed the URL correctly. If the URL should be serving existing content, the system administrator may need to add a new request URL mapping to the intended application\” Here …

Common issue: new SPSite API call returns \”The Web application at http://server:port/ could not be found.\” Read More »

programming against lists using the server-side object model

Hai, Here will see programming against lists using the server-side object model. To do develop applications against SharePoint list we have to Microsoft.SharePoint namespace. To add this DLL reference to your project just go to c:\\Program Files\\Common Files\\Microsoft Shared\\Web ServerExtensions\\14\\ISAPI. Before starting coding against list first will create a simple list using ShapePoint site. To do …

programming against lists using the server-side object model Read More »

Programming against lists using the Client Object Model

Hai, Here will see programming against lists using the Client Object Model. To do develop applications against SharePoint list we have to use Microsoft.SharePoint.Client namespace. To add this reference to your project just go to c:\\Program Files\\Common Files\\Microsoft Shared\\Web ServerExtensions\\14\\ISAPI and Add Microsoft.SharePoint.Client.dll and Microsoft.SharePoint.Client.Runtime.dll DLL files. Before starting coding against list first will create a simple list …

Programming against lists using the Client Object Model Read More »

Scroll to Top