User Aidan - Stack Overflowmost recent 30 from stackoverflow.com2009-12-10T00:44:23Zhttp://stackoverflow.com/feeds/user/5552http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1845987/problem-reverse/1846009#18460096Answer by Aidan for Problem : Reverse Aidan2009-12-04T10:04:05Z2009-12-04T10:04:05Z<p>In general people don't mind <strong>helping</strong> with homework, but it is polite to show that you have at least made some kind of attempt on the problem rather than just typing the question into SO!</p>
http://stackoverflow.com/questions/1762877/why-does-httpcontext-current-user-identity-name-return-the-wrong-username-when-us1Why does HttpContext.Current.User.Identity.Name return the wrong username when used in a webpart?Aidan2009-11-19T12:13:24Z2009-11-19T15:37:20Z
<p>In a Sharepoint web page I am having a problem identifying the logged in user!</p>
<p>The Masterpage contains a normal ootb control that displays the username</p>
<pre><code><%@ Register TagPrefix="wssuc" TagName="Welcome" Src="~/_controltemplates/Welcome.ascx" %>
.....
.....
<wssuc:Welcome id="explitLogout" runat="server" />
</code></pre>
<p>This always displayed the correct logged on user.</p>
<p>However if I call </p>
<pre><code>HttpContext.Current.User.Identity.Name
</code></pre>
<p>from within a webpart then In 1 or 2 % of cases I will get the incorrect name returned.</p>
<p>This gives me a page that will have the correct username at the top, and the incorrect one in the webpart. Other methods of getting the name in the webpart return the same incorrect name. If the name checker webpart is on the same page multiple times then very rarely the second copy of the webpart will have the correct name or a third incorrect identity!</p>
<p>The identities are stored in Active Directory, and the users authenticate against and ISA server, users are not on the same domain as the SharePoint infrastructure. The sharepoint farm is rather complex with the ISA servers, four web front ends, an apps server and finally a database server.</p>
<p>Has anyone had this happen before? or have any clue as to the direction I should take to investigate the problem!</p>
<p>The servers are running IIS6 on server 2003. Sharepoint is at SP2 but without the latest bunch of patches.</p>
<p>Additional:
Output Cache is enabled. Authenticated Cache Profile is "Intranet"
The settings for that profile are as follows</p>
<pre><code>Title Intranet (Collaboration Site)
Display Name (BLANK)
Display Description Optimized for collaboration sites where authoring, web part cusomization, and minor version are enabled.
Perform ACL Check Yes
Enabled Yes
Duration 180
Check for Changes Yes
Vary by Custom Parameter (BLANK)
Vary by HTTP Header Browser
Vary by Query String Parameters (BLANK)
Vary by User Rights Yes
Cacheability ServerAndPrivate
Safe for Authenticated Use Yes
Allow writers to view cached content (BLANK)
</code></pre>
http://stackoverflow.com/questions/1460566/how-is-it-possible-to-access-sharepoint-farm-logs1How is it possible to access Sharepoint Farm logs?Aidan2009-09-22T14:52:39Z2009-11-13T15:04:44Z
<p>I have been looking at the "_layouts/SpUsageSite.aspx" logs for my site, but they are giving erroneous results (eg 0 unique visitors when I know at least I have been on the site)</p>
<p>What is the best way to see these logs in a better way than the ootb functionality?</p>
http://stackoverflow.com/questions/1460566/how-is-it-possible-to-access-sharepoint-farm-logs/1729764#17297640Answer by Aidan for How is it possible to access Sharepoint Farm logs?Aidan2009-11-13T15:04:44Z2009-11-13T15:04:44Z<p>We patched to sp2 and it all started working again like magic.</p>
http://stackoverflow.com/questions/1033850/load-testing-with-vs2008-how-do-i-get-stats-from-the-system-under-test0load testing with vs2008, how do I get stats from the system under test?Aidan2009-06-23T16:55:45Z2009-11-10T18:25:13Z
<p>When running a webtest or load test on a website using VS2008 Test edition how can I get the CPU etc of the webserver? I am sure I am being very slow here but I cannot work out how to set it up!</p>
<p>I can remote onto the webserver if that helps any.</p>
<p>As a rider question, can I import perfmon stats back into an already-run test?</p>
http://stackoverflow.com/questions/1643024/overriding-render-on-sharepoint-page/1644940#16449402Answer by Aidan for Overriding Render on Sharepoint page.Aidan2009-10-29T16:27:02Z2009-10-29T16:27:02Z<p>You may have some luck using the HTML agility pack. HTML Parsers are better at... parsing... html than regexs are.</p>
<p><a href="http://www.codeplex.com/htmlagilitypack" rel="nofollow">http://www.codeplex.com/htmlagilitypack</a></p>
http://stackoverflow.com/questions/1625432/in-a-sharepoint-wsp-file-how-do-i-move-a-folder-full-of-files-into-the-sharepoin0In a sharepoint .wsp file how do I move a folder full of files into the sharepoint filesystem.Aidan2009-10-26T15:17:41Z2009-10-26T21:50:13Z
<p>I need to move a folder of files (+-100 or so) from within a .wsp file</p>
<p>Steps<br />
1) Package up files into the wsp<br />
2) When Feature is activated copy files to the filesystem (12\LAYOUTS\MyPackage)<br />
3) When Feature removed delete the MyPackage folder<br />
4) .......<br />
5) Profit</p>
<p>The files do not need to be versioned etc by SharePoint.</p>
http://stackoverflow.com/questions/541108/is-it-possible-to-develop-for-sharepoint-using-continuous-integration-techniques5Is it possible to develop for sharepoint using continuous integration techniques?Aidan2009-02-12T12:52:46Z2009-10-22T15:25:30Z
<p>We are gearing up for some pretty serious Sharepoint(MOSS 2007) development including custom web parts, lists, master pages and layouts etc etc and etc.</p>
<p>We are evaluating version control and it seems that the discussion has not got much deeper than that. I am keen that we can easily deploy from the source control to our test and production servers with as little human contact as possible, and preferably entirely automatically after every check in.</p>
<p>I have not worked using CI before and so am feeling a bit ignorant as to what is possible with Sharepoint, and what is too complex to be sensible.</p>
<p>I fear if we head off down a too 'easy' path then we will come to regret it pretty swiftly when we have to spend half a day setting up each environment after we release some new functionality.</p>
<p>I have not even started to address in my head what happens when there is actual content in the lists added by users and how that will affect what we do on the development side.</p>
<p>Links to blogs/documentation are welcomed. Personal experiences VERY welcome.</p>
http://stackoverflow.com/questions/1466709/improve-my-password-generation-script/1466988#14669880Answer by Aidan for Improve my password generation scriptAidan2009-09-23T16:05:18Z2009-09-23T16:05:18Z<p>We had some discussion about some of these issues before</p>
<p><a href="http://stackoverflow.com/questions/55556/password-generation-best-practice">http://stackoverflow.com/questions/55556/password-generation-best-practice</a></p>
http://stackoverflow.com/questions/1312801/can-you-solve-my-odd-sharepoint-css-cache-customising-problem1Can you solve my odd Sharepoint CSS cache / customising problem?Aidan2009-08-21T15:50:56Z2009-08-21T18:24:27Z
<p>I have a weird situation with my sharepoint css.</p>
<p>It is deployed as part of a .wsp solution and up until now everything has been fine.</p>
<p>The farm it deploys too has a couple of webfront ends and a single apps server and SQL box.</p>
<p>The symptom is that if I deploy the solution, then use a webbrowser to view the page it has no styles, and if I access the .css directly I see the first 100 or so bytes of the .css.</p>
<p>However if I go into sharepoint designer and look at the file it is looks fine, and if I check it out and publish it (customising the file but not actually changing anything in it) then the website works fine and the css downloads completely.</p>
<p>There is some fairly complex caching on the servers Disk based and object caches. as far as I can tell I have cleared these (and an issreset should clear them anyway... shouldn't it?) </p>
<p>I have used this tool to clear the blobcache from the whole farm <a href="http://blobcachefarmflush.codeplex.com/" rel="nofollow">http://blobcachefarmflush.codeplex.com/</a></p>
http://stackoverflow.com/questions/1187591/is-there-any-way-to-alter-a-column-to-switch-off-not-null/1187634#11876340Answer by Aidan for Is there any way to ALTER a column to switch off 'NOT NULL'?Aidan2009-07-27T11:23:14Z2009-07-27T11:23:14Z<p>Get a list of the columns and a template that has the required SQL and use some tool to create the statements for you.
I have done this in Excel before, but you could write a real program using your language of choice.</p>
http://stackoverflow.com/questions/1187432/sql-query-need-help/1187600#11876002Answer by Aidan for Sql Query Need helpAidan2009-07-27T11:06:32Z2009-07-27T11:06:32Z<p>lastlogin is not a good name for that column, as it is a list of ALL login dates not just the last one.</p>
http://stackoverflow.com/questions/944673/where-should-i-store-css-files-in-a-sharepoint-install0where should I store CSS files in a sharepoint install?Aidan2009-06-03T13:14:46Z2009-07-14T04:47:23Z
<p>I have some css files that are deployed in a feature scoped to "site"</p>
<p>They contains some calls to images (also deployed by the solution) and so the paths are things like</p>
<pre><code>background: #ffcc00 url( '/sites/portal/Style Library/CSS/PersonalCenter.gif' ) repeat-x;
</code></pre>
<p>However I would quite like to be able to deploy to other "sites/XXXX" without having to change the url in all the css files!</p>
<p>I cannot just place them in the top level URL as it has its own styles etc and it would be confusing to mash styles from subs-sites into it.</p>
<p>Is there somewhere else I should be storing things like this?</p>
<p>Thanks!</p>
http://stackoverflow.com/questions/134158/how-would-you-sort-1-million-32-bit-integers-in-2mb-of-ram/134377#134377-1Answer by Aidan for How would you sort 1 million 32-bit integers in 2MB of RAM?Aidan2008-09-25T16:31:04Z2009-07-02T09:26:01Z<p><a href="http://www.nytimes.com/2007/12/02/business/02digi.html?%5Fr=2&n=Top/Reference/Times%20Topics/People/R/Richardson,%20Bill&oref=slogin" rel="nofollow">A bubble sort is the wrong way to go!</a></p>
http://stackoverflow.com/questions/1068373/how-to-calculate-the-average-rgb-color-values-of-a-bitmap/1068399#10683991Answer by Aidan for How to calculate the average rgb color values of a bitmapAidan2009-07-01T10:33:17Z2009-07-01T10:34:30Z<p>This kind of thing will work but it may not be fast enough to be that useful.
from here <a href="http://www.dreamincode.net/code/snippet3879.htm" rel="nofollow">http://www.dreamincode.net/code/snippet3879.htm</a></p>
<pre><code>public static Color getDominantColor(Bitmap bmp)
{
//Used for tally
int r = 0;
int g = 0;
int b = 0;
int total = 0;
for (int x = 0; x < bmp.Width; x++)
{
for (int y = 0; y < bmp.Height; y++)
{
Color clr = bmp.GetPixel(x, y);
r += clr.R;
g += clr.G;
b += clr.B;
total++;
}
}
//Calculate average
r /= total;
g /= total;
b /= total;
return Color.FromArgb(r, g, b);
}
</code></pre>
http://stackoverflow.com/questions/1058588/reasons-not-to-overdesign-a-solution-to-a-current-problem/1058614#10586141Answer by Aidan for Reasons not to overdesign a solution to a current problemAidan2009-06-29T14:24:53Z2009-06-29T14:24:53Z<p>You say </p>
<blockquote>
<p>I can understand extending a design when you know it makes sense for requirements or possible uses that exist either right now or in the near future.</p>
</blockquote>
<p>and I guess that sometimes people see this line as blurry something that "makes sense" to you may be over-design to someone else.</p>
http://stackoverflow.com/questions/1049011/sharepoint-content-targeting-is-it-possible-to-have-multiple-views-per-user0SharePoint content targeting, is it possible to have multiple views per user?Aidan2009-06-26T13:02:58Z2009-06-26T13:22:16Z
<p>Our SharePoint site has a couple of broad groups that use it. In essence they are managers and users. We have different tabs viewable to the different people.
We now have a requirement for Managers to be able to pretend for a while that they are users, and see what users would normally see.</p>
<p>We cannot think of a way of achieving this toggle, what we don't want is for managers to get ALL the tabs that managers and users see, but be able to switch views on demand.</p>
<p>It is not required that users are excluded from manager content if they can guess the url, but equally if they are excluded then that is not a big problem.</p>
<p>We can write code if required, we are just not sure where to start with this!</p>
<p>Edit: There are whole sub-sites and pages of info for both audiences, not simply content on the same page.</p>
http://stackoverflow.com/questions/1044868/using-sharepoint-subsites-and-audience-to-target-content-how0Using SharePoint subsites and audience to target content... how?Aidan2009-06-25T16:25:58Z2009-06-25T20:54:37Z
<p>I would like to show different tabs in the top navigation of a SharePoint site depending on what 'Audience' the user is in. I can do this fine for pages but for subsites I cannot find an option. Googling reveals a work around, hiding the subsite and adding a link to the subsite URL. </p>
<p>There has to be a better way than this!</p>
http://stackoverflow.com/questions/1017917/steps-to-take-to-slowly-integrate-unit-testing-into-a-project/1017951#10179516Answer by Aidan for Steps to take to slowly integrate unit-testing into a projectAidan2009-06-19T13:26:53Z2009-06-19T13:26:53Z<p><a href="http://rads.stackoverflow.com/amzn/click/0131177052" rel="nofollow">Working Effectively with Legacy Code</a> by Michael Feathers</p>
<p>Hard to know if implementing a factory pattern will do any good, depends on what the code is doing :)</p>
http://stackoverflow.com/questions/858990/how-can-i-target-css-to-a-particular-sharepoint-page-layout-file1How can I target CSS to a particular sharepoint Page Layout file?Aidan2009-05-13T16:32:16Z2009-06-19T08:58:42Z
<p>Is it possible to create a .CSS file for each SharePoint Page Layout I develop, or does the CSS for each possible layout in a master page need to be referenced in the master page?</p>
<p>IE is it possible to affect the <code><head></code> of the page a page layout is used in?</p>
http://stackoverflow.com/questions/1008099/sharepoint-spsite-disposing/1011959#10119590Answer by Aidan for SharePoint SPSite DisposingAidan2009-06-18T10:28:34Z2009-06-18T10:28:34Z<p>The guidance here
<a href="http://www.sharepointdevwiki.com/display/public/When+to+Dispose+SharePoint+objects" rel="nofollow">http://www.sharepointdevwiki.com/display/public/When+to+Dispose+SharePoint+objects</a></p>
<p>suggests that </p>
<pre><code>//loop through each sub site
for (int i = 0; i <= rootweb.Webs.Count; i++)
{
using (SPWeb subweb = rootweb.Webs[i])
{
//do stuff
}
}
</code></pre>
<p>is the prefered solution to this problem.</p>
<p>There is also a tool you can run over your solution to check you are doing things right.
<a href="http://code.msdn.microsoft.com/SPDisposeCheck" rel="nofollow">http://code.msdn.microsoft.com/SPDisposeCheck</a></p>
http://stackoverflow.com/questions/1011508/corner-images-using-css/1011596#10115960Answer by Aidan for Corner images using CSSAidan2009-06-18T08:59:28Z2009-06-18T08:59:28Z<p>you could try forcing IE8 into IE7 compatablity mode.</p>
<p>stick </p>
<pre><code><meta http-equiv="X-UA-Compatible" content="IE=EmulateIE7" />
</code></pre>
<p>in your <code><head></code></p>
http://stackoverflow.com/questions/1010810/what-would-you-do-if-you-just-had-this-code-dumped-in-your-lap/1011578#10115782Answer by Aidan for What would you do if you just had this code dumped in your lap?Aidan2009-06-18T08:55:07Z2009-06-18T08:55:07Z<p>This may help you too.</p>
<p><a href="http://stackoverflow.com/questions/108141/how-do-i-work-effectively-with-very-messy-legacy-code/108164#108164">http://stackoverflow.com/questions/108141/how-do-i-work-effectively-with-very-messy-legacy-code/108164#108164</a></p>
http://stackoverflow.com/questions/996737/asp-net-usercontrol-odd-behaviour0asp.net usercontrol odd behaviour.Aidan2009-06-15T15:24:56Z2009-06-15T17:19:19Z
<p>I have a usercontrol that I am trying to use in a project.</p>
<p>If I do it like this (reference the sitemap in the control)</p>
<pre><code><%@ Register TagPrefix="OS" Namespace="OS_Layouts" Assembly="OSControlLibrary, Version=0.0.0.0, Culture=neutral, PublicKeyToken=0831306e55dc1c27" %>
<html><body>
<OS:OSmenu runat="server" ID="men1" SiteMap="siteMapDataSource1" />
<asp:SiteMapDataSource ShowStartingNode="false" SiteMapProvider="CombinedNavSiteMapProvider"
ID="siteMapDataSource1" runat="server" />
</body </html>
</code></pre>
<p>I get an odd error.</p>
<blockquote>
<p>Parser Error Message: Cannot create an object of type 'System.Web.UI.WebControls.SiteMapDataSource' from its string representation 'siteMapDataSource1' for the 'SiteMap' property.</p>
</blockquote>
<p>If I do this it works fine. (add the sitemap in code during pageload)</p>
<pre><code><%@ Register TagPrefix="OS" Namespace="OS_Layouts" Assembly="OSControlLibrary, Version=0.0.0.0, Culture=neutral, PublicKeyToken=0831306e55dc1c27" %>
<script runat=server>
protected void Page_Load(object sender, EventArgs e)
{
men1.SiteMap = siteMapDataSource1;
}
</script>
<html><body>
<OS:OSmenu runat="server" ID="men1" />
<asp:SiteMapDataSource ShowStartingNode="false" siteMapProvider="CombinedNavSiteMapProvider" ID="siteMapDataSource1" runat="server" />
</body> </html>
</code></pre>
<p>The only "clever" thing I am doing is using 'aspnet_compiler' and 'aspnet_merge' to create a .dll containing my usercontrols into a single dll I can use in other projects.</p>
<p>Have I misunderstood, or misconfigured something?</p>
<p>Thanks
EDIT: some further info.</p>
<p>So my aspx.cs looks like this
I always get "Fail!"</p>
<pre><code>using System;
using System.Web.UI.WebControls;
public partial class OSmenu : System.Web.UI.UserControl
{
public String SiteMapID { get; set; }
protected void Page_Load(object sender, EventArgs e)
{
if (SiteMapID == "") return;
SiteMapDataSource foo = Page.FindControl(SiteMapID) as SiteMapDataSource;
if (foo == null)
{
Response.Write("</br> fail!");
}
else
{
Response.Write("/<br> ok!" + foo.UniqueID);
}
}
}
</code></pre>
<p>All this is slightly complicated by the fact the host page for the control is a sharepoint masterpage, and I cannot get debugging to work for the control, I can for the masterpage itself! </p>
http://stackoverflow.com/questions/710076/how-do-i-share-user-controls-between-web-applications-in-asp-net/982380#9823802Answer by Aidan for How do I share user controls between web applications in ASP.NET?Aidan2009-06-11T17:10:24Z2009-06-11T17:10:24Z<p>You could compile it into a dll</p>
<p><a href="http://msdn.microsoft.com/en-us/library/aa479318.aspx" rel="nofollow">Turning an .ascx User Control into a Redistributable Custom Control</a></p>
<blockquote>
<p>Brief Outline of the Steps</p>
<p>The basic steps to make this happen
are as follows:</p>
<ol>
<li>Write your user control as you normally would, typically using the
Visual Studio designer.</li>
<li>Test it using a simple page before trying to deploy it.</li>
<li>Deploy the application to precompile it.</li>
<li>Grab the user control's assembly produced by the deployment step, and
you're essentially done: You have your
custom control.</li>
<li>Finally, use your custom control in other apps</li>
</ol>
</blockquote>
<p>Further info here <a href="http://www.nathanblevins.com/Articles/Compile-a-Web-User-Control-into-a-DLL-.Net-c-.aspx" rel="nofollow">http://www.nathanblevins.com/Articles/Compile-a-Web-User-Control-into-a-DLL-.Net-c-.aspx</a></p>
http://stackoverflow.com/questions/981685/how-to-dynamically-switch-pagelayout-and-masterpage-of-sharepoint-publishing-page/982194#9821941Answer by Aidan for How to dynamically switch PageLayout and MasterPage of SharePoint Publishing page?Aidan2009-06-11T16:35:31Z2009-06-11T16:35:31Z<p>I think you would be fighting SharePoint if you continue down that route, I fear it would also become something of a support nightmare as it becomes less clear where problems lie, or remembering to make changes in both (or all four!) places when something is updated.</p>
<p>You can have controls appear or hide depending on the editmode of a page so what is shown to the user is totally different but all the code for a page is still in one place.</p>
<p>Investigate the editmodepanel.</p>
<pre><code><publishingwebcontrols:editmodepanel ID="Editmodepanel1" runat="server">
<link id="Link2" rel=Stylesheet href="<% $SPUrl:~sitecollection/EditMode.css %>" runat="server" type="text/css" />
</publishingwebcontrols:editmodepanel>
</code></pre>
<p>I realise that is not quite what you asked... but I find fighting SharePoint is a losing battle you just have to work with its 'way'.</p>
http://stackoverflow.com/questions/944673/where-should-i-store-css-files-in-a-sharepoint-install/945754#9457541Answer by Aidan for where should I store CSS files in a sharepoint install?Aidan2009-06-03T16:37:13Z2009-06-03T16:37:13Z<p>Thanks for your answers... In the end I have remembered about relative paths and </p>
<pre><code>background: #ffcc00 url( '../CSS/PersonalCenter.gif' ) repeat-x;
</code></pre>
<p>works just fine.</p>
<p>The images/css files remain in the Style Library which has been useful to check CSS changes before committing them to the main feature and doing a 'proper' release of the solution </p>
<p>Now why did I not just do that from the start !?</p>
http://stackoverflow.com/questions/878534/what-am-i-doing-wrong-with-the-styling-in-this-sharepoint-masterpage1What am I doing wrong with the styling in this sharepoint masterpage?Aidan2009-05-18T16:19:49Z2009-05-18T16:22:57Z
<p>Here is the code sample</p>
<pre><code> <div class="Layouts">
<asp:ContentPlaceHolder ID="Center" runat="server" />
<asp:ContentPlaceHolder ID="PlaceHolderMain" runat="server" />
<p>&nbsp;</p>
</div>
</code></pre>
<p>The CSS that styles the Layouts div is </p>
<pre><code>.Layouts
{
background-color: White;
margin-top: 17px;
padding-top: 18px;
}
</code></pre>
<p>Nothing to crazy there!
The problem I am having is that without the "<code><p>&nbsp;</p></code>" the white background does not fill down behind whatever I put in the two ContentPlaceHolders (and no they don't have an over riding background!)</p>
<p>With the <code><p>&nbsp;</p></code> it all works as I wish... but not as I expect!</p>
<p>Am I doing something wrong or is it a browser or a Sharepoint issue? Is there a better fix than the space?</p>
http://stackoverflow.com/questions/864874/what-would-i-have-to-do-to-get-the-new-html-editor-ajax-control-to-work-as-a-shar0what would I have to do to get the new HTML Editor ajax control to work as a sharepoint content editor webpart?Aidan2009-05-14T18:14:50Z2009-05-15T04:05:41Z
<p>Microsoft have just released a few new ajax controls including an ajaxed up HTML editor control. </p>
<p><a href="http://www.asp.net/learn/Ajax-Control-Toolkit/tutorial-50-cs.aspx" rel="nofollow">http://www.asp.net/learn/Ajax-Control-Toolkit/tutorial-50-cs.aspx</a></p>
<p>I would like to try this in sharepont (as the built in sharepoint one is awful (no cross browser at all and flaky on IE) I tried the Telerik free one but it was not very stable.</p>
<p>I guess that getting the control up on a page won't be too hard, but how do I make sure the resulting HTML is stored in the Sharepoint way(tm)?</p>
<p>Thanks</p>
http://stackoverflow.com/questions/76967/mending-bad-bad-database-design-once-data-is-in-the-system6Mending bad BAD database design once data is in the system.Aidan2008-09-16T20:55:50Z2009-04-30T21:03:40Z
<p>I know that that is not a question... erm anyway HERE is the question.</p>
<p>I have inherited a database that has 1(one) table in that looks much like this. Its aim is to record what species are found in the various (200 odd) countries.</p>
<pre><code>ID
Species
Afghanistan
Albania
Algeria
American Samoa
Andorra
Angola
....
Western Sahara
Yemen
Zambia
Zimbabwe
</code></pre>
<p>A sample of the data would be something like this</p>
<pre><code>id Species Afghanistan Albania American Samoa
1 SP1 null null null
2 SP2 1 1 null
3 SP3 null null 1
</code></pre>
<p>It seems to me this is a typical many to many situation and I want 3 tables.
Species, Country, and SpeciesFoundInCountry</p>
<p>The link table (SpeciesFoundInCountry) would have foreign keys in both the species and Country tables.</p>
<p>(It is hard to draw the diagram!)</p>
<pre><code>Species
SpeciesID SpeciesName
Country
CountryID CountryName
SpeciesFoundInCountry
CountryID SpeciesID
</code></pre>
<p>Is there a magic way I can generate an insert statement that will get the CountryID from the new Country table based on the column name and the SpeciesID where there is a 1 in the original mega table?</p>
<p>I can do it for one Country (this is a select to show what I want out)</p>
<pre><code>SELECT Species.ID, Country.CountryID
FROM Country, Species
WHERE (((Species.Afghanistan)=1)) AND (((Country.Country)="Afghanistan"));
</code></pre>
<p>(the mega table is called species)</p>
<p>But using this strategy I would need to do the query for each column in the original table. </p>
<p>Is there a way of doing this in sql?</p>
<p>I guess I can OR a load of my where clauses together and write a script to make the sql, seems inelegant though!</p>
<p>Any thoughts (or clarification required)?</p>
<p>Cheers for reading all that :D</p>
http://stackoverflow.com/questions/1762877/why-does-httpcontext-current-user-identity-name-return-the-wrong-username-when-us/1764159#1764159Comment by Aidan on Why does HttpContext.Current.User.Identity.Name return the wrong username when used in a webpart?Aidan2009-11-19T16:38:40Z2009-11-19T16:38:40ZThat gives us the same wrong user as going straight for the HttpContext.http://stackoverflow.com/questions/1722373/how-can-you-be-a-quality-programmer-in-a-programming-team/1722452#1722452Comment by Aidan on How can you be a quality programmer in a programming team?Aidan2009-11-12T17:13:49Z2009-11-12T17:13:49ZComments can be misleading, better the code be expressive in itself.http://stackoverflow.com/questions/1637171/how-to-keep-an-engineering-log/1637502#1637502Comment by Aidan on How to keep an Engineering LogAidan2009-10-28T14:19:27Z2009-10-28T14:19:27ZWell that is my new thing learned for today!http://stackoverflow.com/questions/35219/optimizing-customizing-sharepoint-search-crawling/38231#38231Comment by Aidan on Optimizing/Customizing Sharepoint Search CrawlingAidan2009-10-14T13:38:46Z2009-10-14T13:38:46ZAddRule.exe worked for me! Thanks Coryhttp://stackoverflow.com/questions/1509760/developing-net-applications-on-windows-7-for-xp-vista/1509783#1509783Comment by Aidan on Developing .NET Applications on Windows 7 for XP/Vista...Aidan2009-10-02T14:49:30Z2009-10-02T14:49:30ZDo we need this on a t-shirt :)http://stackoverflow.com/questions/1466754/will-the-reader-gets-closed/1466777#1466777Comment by Aidan on Will the Reader Gets Closed Aidan2009-09-23T15:39:55Z2009-09-23T15:39:55Z+1 for using usinghttp://stackoverflow.com/questions/52997/you-have-to-sell-agile-to-managementComment by Aidan on You have to sell "agile" to management...Aidan2009-09-07T15:58:25Z2009-09-07T15:58:25ZThe receptive management has gone to other projects, the current lot have been burned by an outsourced project that was 'agile' and cost a lot more than expected (it seems due to them not reading the contract correctly)
we as a team have a white board and secretly write user requirements as stories, but we have to still fill in the 'new' project management framework documents... waterfall 'tastic :(
So all in all not that great.http://stackoverflow.com/questions/1312801/can-you-solve-my-odd-sharepoint-css-cache-customising-problem/1313546#1313546Comment by Aidan on Can you solve my odd Sharepoint CSS cache / customising problem?Aidan2009-08-24T12:02:25Z2009-08-24T12:02:25ZThanks for your super comprehensive answer. I shall investigate the IPS etc that sits between us and the (remotely hosted) Sharepoint farm. We certainly have had plenty of firewall problems getting different bits of our and their systems to talk to each other.http://stackoverflow.com/questions/1110164/has-anyone-found-a-video-streaming-solution-for-sharepoint-running-on-windows-ser/1191394#1191394Comment by Aidan on Has anyone found a video streaming solution for Sharepoint running on Windows Server 2008 64-bit?Aidan2009-07-28T15:27:38Z2009-07-28T15:27:38Zand take into consideration no one has silverlight installed.http://stackoverflow.com/questions/896998/z-index-in-ie-6-and-ie-7/903477#903477Comment by Aidan on z-index in IE 6 and IE 7Aidan2009-07-08T17:21:39Z2009-07-08T17:21:39ZNice writeup. Sorted out the exact problem I was having. I would set your z-index to 1000 if I could :Dhttp://stackoverflow.com/questions/1044868/using-sharepoint-subsites-and-audience-to-target-content-howComment by Aidan on Using SharePoint subsites and audience to target content... how?Aidan2009-06-25T17:07:51Z2009-06-25T17:07:51ZI am cry! Make your comment an answer and you will earn points and we can see if people agree with you! Here's hoping there is a work around!http://stackoverflow.com/questions/1033632/productivity-tips-for-new-mac-userComment by Aidan on Productivity tips for new MAC user.Aidan2009-06-23T16:37:07Z2009-06-23T16:37:07ZNo WAY Rich MAC is Message Authentication Code ;)http://stackoverflow.com/questions/935468/convert-user-controls-to-server-controls/935501#935501Comment by Aidan on Convert User Controls to Server Controls.Aidan2009-06-11T17:11:50Z2009-06-11T17:11:50ZAlso <a href="http://msdn.microsoft.com/en-us/library/aa479318.aspx" rel="nofollow">msdn.microsoft.com/en-us/library/…</a>
http://stackoverflow.com/questions/949470/how-do-i-represent-an-image-through-caml/949680#949680Comment by Aidan on How do i represent an image through CAML?Aidan2009-06-04T12:44:26Z2009-06-04T12:44:26ZYou should click the tick next to Magnus' answer. Gives him a bit of reputation and you may get a badge :Dhttp://stackoverflow.com/questions/878534/what-am-i-doing-wrong-with-the-styling-in-this-sharepoint-masterpage/878547#878547Comment by Aidan on What am I doing wrong with the styling in this sharepoint masterpage?Aidan2009-05-18T16:29:27Z2009-05-18T16:29:27ZNow the next question is how could I have found that out for myself?