• Our Office
  • 12 Alpine Close Lakefield Benoni 1501

Blog

jquery ajax return value limit

I have been playing a bit with jquery and ajax and came across a very interesting “by design” issue. I built a simple responsive HTML page that populates a data table via a ajax service that returns a JSON string. Everything worked fine until I tried populating a slightly bigger [...]

Read More

Find something in a Stored Procedure

Forgive me if this is something old (like using a…well using statement in SQL). I remember a time when you had to download some obscure freeware application to scan through all your stored procedures to find references to some text or table. Years after I was faced with just this [...]

Read More

SharePoint SQL Queries

Some useful SQL queries to get web, site and list data: 1) Query to get all the top level site collections SELECT SiteId AS SiteGuid, Id AS WebGuid, FullUrl AS Url, Title, Author, TimeCreated FROM dbo.Webs WHERE (ParentWebId IS NULL) 2) Query to get all the child sites in a [...]

Read More

Meeting Workspaces

Been a while but could not resist sharing this gem. Meeting workspaces has been around since SharePoint 2003/2007 and is a great way to integrate your day to day Office use with SharePoint (aptly named of course Office Server). Now even though I have had some serious challenges with meeting [...]

Read More

1 oz C#, 2 oz PHP

Thought I would add some PHP your way. Let’s say we have a C# web service (most are :)) that you want to call from PHP. Now there are ways to handle complex types returned but the easiest way is to return a string. Even then you cannot just assign [...]

Read More