A usually large collection of data organized especially for rapid search and retrieval (as by a computer).

learn more… | top users | synonyms

1
vote
2answers
37 views

Workflows and SQL Server Databases

Is it possible to create a workflow that is started by activity in a SQL Server database that is outside of SharePoint? Using a WebPart to put and modify data in a database isn't a problem. ...
1
vote
2answers
117 views

SharePoint Data Modelling Tool

I plan to develop a data model for a SharePoint application that we would like to bid out for development. Is there a data modelling tool that is preferred to be used with SharePoint, like it can ...
1
vote
2answers
792 views

accessing database through sharepoint using a service account (windows account)

I am having an issue with connecting to the database for KHouse through sharepoint. I have run through several workarounds to get it to work, but to no avail. We are using several pages that retrieve ...
1
vote
2answers
219 views

SharePoint 2007 Web-application is getting crashed due to memory leak

We decided to duplicate an existing web-application (for Podcasting kit), which has site collection only at root level, so created a new web-application (in the same DB instance) and imported (stsadm ...
0
votes
2answers
168 views

Does anyone know which database table Job Titles are stored in on WSS 3.0?

I need to edit the job titles of users in an installation of WSS 3.0. There doesn't seem to be an easy way of doing this as an administrator. Users can edit their own details via the ...
-1
votes
2answers
509 views

Using linq to get aggregated total of distinct values from csv items in datatable

I am going to use linq to get datapoints for chart created in sharepoint from datatable this is datatable with 2 columns "task" and "users" task users task 1 john task 2 mike, ...
0
votes
1answer
249 views

how to add data connections in infopath codebehind

I'm trying to add multiple data connections to an infopath form in the codebehind. I see that I can connect to a db file , but not straight to sql server. Is this possible? Thanks,
0
votes
1answer
326 views

How to stop SQL time out issue

I keep getting "System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding." 9 out of 10 times when I try to ...
0
votes
1answer
105 views

Empty tables in WSS 3.0 configuration database

I've been looking through the configuration database of our WSS 3.0 installation and I've noticed that the Databases, Servers, Sites, and VirtualServers tables are completely empty. And yet the site ...
1
vote
0answers
20 views

What is a SPPersistedUpgradableObject and the IUpgradable interface mean?

SPPersistedUpgradableObject is a SPPersistedObject that implements the IUpgradable interface. The MSDN is seriously lacks any documentation other than it: Provides members for managing an ...
1
vote
0answers
22 views

Editing a Dataview from a joined list

I think I want to do something simple, but it seems maybe I am not doing it the way you are supposed to. I need to use Sharepoint Designer 2007 to create a website, code behind is highly likely to be ...
0
votes
0answers
65 views

RBS with SharePoint 2010 and SQL Express 2008 / 2012.

My client has about 100GB of files loaded on a File Server. Initially the plan was to upload everything to SharePoint and bring everything under one hood. They have SharePoint Foundation 2010 and SQL ...
0
votes
0answers
45 views

The following roles are missing from the database: 'PSDataAccess', 'PSReportingSchemaAdmin'

Our organisation is upgrading from SP2010 + PWA to SP2013. Having followed the process detailed on TechNet (http://technet.microsoft.com/en-us/library/ee662104.aspx), the test-spprojectdatabase ...
0
votes
0answers
35 views

Customising parameters in SqlDataSource

I am very new to Sharepoint and ASP and all of this so I suspect my question is really simple but I am confused. I am using Sharepoint Designer 2007 and am not allowed to use code behind. The task ...
0
votes
0answers
83 views

Database Attach Upgrade - Warnings and Errors

After running the database attach upgrade and getting the site collection running. SharePoint is advising about some problems. 1- Databases running in compatibility range, upgrade recommended. The ...
0
votes
0answers
73 views

Tempdb activity causing IO problem on virtual Sharepoint installation

My problem is performance and I suspect an IO problem with TempDB. I have a sharepoint 2010 installation that is running on 3 VMs; App tier + web, search, database. Database storage is being provided ...
0
votes
0answers
118 views

When using a SQL database connection with stored procedures is it possible to use an output parameter

I'm kind of new to attempting this sort of thing and I have some unique restrictions, so please bear with me. I am attempting to connect to data in a SQL database through stored procedures in my ...
0
votes
0answers
267 views

Insufficient SQL database permissions for user “”

I'm working with SharePoint 2007 and when I start the search service I keep getting the following error: Insufficient SQL database permissions for user '' in database Test_ConfigDB on SQL Server ...
0
votes
0answers
181 views

Updating MOSS list with MS Access- Object is read-only

I have a user who needs to update a large (39,000 items) MOSS list from MS Access 2007. The list is a simple one, created by publishing a query from Access to MOSS, now needs to be updated weekly. The ...
0
votes
0answers
215 views

How to change the database server in SharePoint server 2010?

I have SharePoint Server 2010 installed on Server A (all the roles are on the same machine),and now I need to add a new server B which must be the new database server, so I need to move all the ...
0
votes
0answers
204 views

Linq Data Context - connect from web part as application pool identity

I have an assembly with linq to sql mappings and I'd like to utilize it in my webpart. But when I try following: DataList dataList = new DataList(); dataList.DataSource = DB.Foo; ...