Tagged Questions
The spquery tag has no wiki summary.
6
votes
6answers
10k views
CAML query that includes folders in result set
I'm trying to write a CAML query that executes against a specific SPList, scoped to a specific folder, recursive from that point, and returns all ListItems (which meet a criteria) and Folders.
Here's ...
4
votes
4answers
11k views
What is the best way to retrieve distinct / unique values using SPQuery?
I have a list that looks like:
Movie Year
----- ----
Fight Club 1999
The Matrix 1999
Pulp Fiction 1994
Using CAML and the SPQuery object I need to get a distinct list of ...
3
votes
1answer
1k views
Get items from sharepoint list by Title field with ignore care using Caml or SPQuery
I want to get data from SharePoint List using CAML and filtered by Title with ignore case like
<Query>
<Where>
<Eq>
<FieldRef Name='Title' />
...
2
votes
1answer
408 views
How to get all folders in a SPList, then checking permission “Contribute” for current user
I have a sharepoint list like that:
List
---------Folder 1
-----------------Item 1
-----------------Item 2
---------Folder 2
-----------------Item 1
-----------------Item 2
---------Folder 3
...
2
votes
1answer
470 views
SPQuery and RowLimit
I have around 10000+ rows(Listitems) in a list I want to query.
I want to iterate each of the item in a timerJob - but I cant take all of them at a time
since : Object Model Override - NO, ...
2
votes
1answer
934 views
Enumerate all folders in a SharePoint list recursively
Is it possible to get a list of all folders in a SharePoint document library, using SPQuery?
Something you could get in file system, if you opened Windows command prompt and ran
dir /b /A:D /S
...
1
vote
1answer
233 views
How to filter a Sharepoint:ListView
In VS2010 I have a SharePoint 2010 project with an Application Page. In this simple page I have header information about an order and a SharePoint:ListView for the product detail. So, I just want to ...
1
vote
3answers
426 views
CAML JOINS using SharePoint
Assume that there are Emp and Dept tables.
Emp Table has
EmpID
FirstName
LastName
DeptName
Email
Dept table has
DeptID
DeptName
i have to display all the employee details based on DeptName ...
1
vote
0answers
401 views
SharePoint 2010 CAML Query fails when indexed columns used
I have an SPQuery that has been working fine until my list hit 500 items.
q.Query = "" + DefectID + "";
This was successfully returning 1 item where DefectID matched my provided value.
Once the list ...
1
vote
1answer
3k views
SharePoint's List.GetItems(view) returns ALL items instead of filtered view items
I'm trying to get a count of items in a list, based on a view. Every method I've tried so far only returns the grand total of the list. I've tried just about every method I've run across while ...
0
votes
0answers
17 views
Build view in SPList on comma separated values in field
I have a list that I want to create views on, one view per possible value in a text field in the list, the text field contains a comma separated string. How should I do this?
The field contains any ...
0
votes
1answer
19 views
Data returned if GetItems if query did not match
This is really a simple question. What does GetItems method return if SPQueryobject did not find any match? if i call the update method, if it did find anything. Will it add it?
I'm at the point of ...
0
votes
1answer
254 views
Sharepoint SPQuery on SPView problem
I have created a CAML query to get some particular items on a list, that contains OR:
<Or>
<Eq><FieldRef Name='Title'/><Value Type='Text'>tileA</Value></Eq>
...
0
votes
0answers
204 views
SPQuery : OrderBy not working
SPSite site = new SPSite("http://localhost:81");
SPWeb thisWeb = site.OpenWeb();
SPList personnesList = thisWeb.GetList(thisWeb.Url + "/Lists/Personnes");
SPQuery ...
0
votes
1answer
133 views
Sharepoint SPQuery problem
I'm trying to use GetItems() method on a SPList and I pass SPQuery to it. The problem is, it return all the items from my SPList instead of just the filtered ones. My query looks like this:
...
0
votes
0answers
497 views
SharePoint 2010 SPQuery - Order by Content Type?
Just wondering if this is even possible before I continue researching. Is it possible to order by content type? I seem to always get the same result no matter what I do with the Order by. Using the ID ...
0
votes
0answers
51 views
Execute a specific SPARQL query on DBPedia
I want to get a list of Syrian universities, so I've tried to run this query on DBpedia.org but didn't get the
result, what's the problem?
SELECT ?Name WHERE{
?p skos:subject ...
0
votes
2answers
507 views
SharePoint: SPQuery Calculated fields filter does not work
I have a calculated field in my list and I am trying to use filter on this field. For some reason, the following query always returns all items instead of a filtered item collection.
Could you please ...
0
votes
0answers
202 views
SPQuery not returning expected results
I am trying to search for an item in a SharePoint list using SPQuery, but even though the file is there, the result is null.
The code is the following:
var query = new SPQuery();
query.Query = ...
0
votes
2answers
920 views
SPQuery : Joining lists and where in the foreign list
Hello Sharepoint developers !
Have you ever tried to do a join between lists and in both of those lists needed to place a where clause?
I can do it in the first list, but can't find out how to place ...
0
votes
1answer
344 views
SharePoint: Validating SPQuery
I am writing an internal API for my company which allows users to pass in SharePoint CAML query.
In side my function I take to user's query, and add some additional elements to it and then use the ...
0
votes
0answers
158 views
How to create SPQuery in Custom webpart
I have custom webpart, I used the Sharepoint Tasks list. Now i need to get specific data from Tasks list like "I need the data of X user from the period Y to period Z" is there a way to make this ...
0
votes
1answer
421 views
How can I write a SPQuery to filter items based on a LinkFieldValue?
I need to select a single value from a SharePoint list based on a field value. The type of the field is LinkFieldValue. How should I write the CAML query?
When I select the items with an empty query, ...
0
votes
1answer
348 views
Can I retrieve additional fields for a SPListItem from SPQuery which had ViewFields set?
I am retrieving SPListItems from SPList with a SPQuery that has ViewFields set. I am using ViewFields to improve performance. However, for some items, I need additional data. I know I can just ...
0
votes
2answers
2k views
How do I get recurring SharePoint Calendar List Items
Im running this query on the same server as the web application, so SPQuery.ExpandRecurrence should work. However, with the following I only get 3 items in the returned list collection vs. the 3 ...
-1
votes
2answers
70 views
SPQuery search doesn't work with “BeginsWith”
So, my problem is that my knowledge of CAML and Sharepoint is very poor.
Question: I need SPQuery for building query search, search text I have from textbox. I expect that my query returns me ...