User abigblackman - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T18:39:49Zhttp://stackoverflow.com/feeds/user/6084http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/801258/redirect-document-write-from-javascript-script1Redirect document.write from javascript scriptabigblackman2009-04-29T07:28:06Z2009-11-22T21:50:08Z
<p>We want to serve ads on our site but the adserver we are in talks with has issues with delivering their advertising fast enough for us.</p>
<p>The issue as I see it is that we are supposed to include a <code><script src="http://advertiserurl/myadvertkey"></script></code> where we want to display the ad and it will then download a script and use document.write to insert some html.</p>
<p>Problem is that the call to the advertiser website is slowish and the code returned then downloads another file (the ad) which means the speed of rendering our pages slows while we wait for the request to be filled. </p>
<p>Is there a way to take the output from the document.write call and write this in after the page has loaded?</p>
<p>Basically I want to do this:</p>
<pre><code><html>
<body>
<script>
function onLoad() {
var urlToGetContentFrom = 'http://advertiserurl/myadvertkey';
// download js from above url somehow
var advertHtml = // do something awesome to interprete document.write output
$('someElement').innerHTML = advertHtml;
}
</script>
</body>
</html>
</code></pre>
<p>Or anything similar that will let me get the output of that file and display it.</p>
http://stackoverflow.com/questions/1746722/does-including-an-entire-namespace-slow-things-down/1746774#17467741Answer by abigblackman for Does including an entire namespace slow things down?abigblackman2009-11-17T05:23:36Z2009-11-17T05:23:36Z<p>It will not slow down your production code, however it could slow down your coding as the IDE has to show you more options and you have to pick through more possibilities when looking at code completion lists.</p>
http://stackoverflow.com/questions/1314627/asp-net-globalization-cultureauto-page-directive-with-neutral-culture-crash/1665121#16651211Answer by abigblackman for ASP.NET Globalization: Culture="auto" page directive with neutral culture crash?abigblackman2009-11-03T03:46:00Z2009-11-03T03:46:00Z<p>I was having the same problem and after bonking my head against a wall for a while found the answer right under my nose.</p>
<p>The issue I had was in not understanding the difference between <strong>CurrentCulture</strong> and <strong>CurrentUICulture</strong>. The difference being <strong>CurrentCulture</strong> is used to format dates, numbers and perform sorting, <strong>CurrentUICulture</strong> is used to lookup culture specific strings from a resource. </p>
<p>I had some code that looked like</p>
<pre><code>return input.ToString("C", System.Globalization.CultureInfo.CurrentUICulture);
</code></pre>
<p>when it should be been</p>
<pre><code>return input.ToString("C", System.Globalization.CultureInfo.CurrentCulture);
</code></pre>
<p>When you start trying to format culture specific items with a non-specific culture you will get the System.NotSupportedException. </p>
http://stackoverflow.com/questions/1641718/how-to-select-unique-records-by-sql/1641732#16417324Answer by abigblackman for How to select unique records by SQLabigblackman2009-10-29T05:09:53Z2009-10-29T05:09:53Z<p>you can use select distinct or group by to do this.</p>
<pre><code>select distinct a, c
from table_c
</code></pre>
<p>or</p>
<pre><code>select a, b
from table_c
group by a, b
</code></pre>
<p>group by will be more helpful if you want to use some aggregate function like count or sum</p>
<pre><code>select a, b, count(*)
from table_c
group by a, b
select a, b, sum(d)
from table_c
group by a, b
</code></pre>
http://stackoverflow.com/questions/1622955/help-with-hard-sql-query-to-update-based-on-daily-totals-to-summary-table/1622971#16229710Answer by abigblackman for Help with hard sql query to update based on daily totals to summary tableabigblackman2009-10-26T03:44:35Z2009-10-26T03:44:35Z<p>I think you can use an aggregate + a case statement to do this. Something like:</p>
<pre><code>declare @t table (a int, b int)
insert into @t values(1, 5)
insert into @t values(1, 15)
insert into @t values(1, 10)
select a, sum( case when b>10 then 10 else b end)
from @t
group by a
</code></pre>
<p>The case statement is ensuring that you never add more than 10 if the value is greater than 10</p>
http://stackoverflow.com/questions/1622900/finding-top-n-for-each-unique-row0Finding top n for each unique rowabigblackman2009-10-26T03:01:12Z2009-10-26T03:44:18Z
<p>I'm trying to get the top N records for each unique row of data in a table (I'm grouping on columns <em>b</em>,<em>c</em> and <em>d</em>, column <em>a</em> is the unique identifier and column <em>e</em> is the score of which i want the top 1 in this case).</p>
<pre><code>a b c d e
2 38 NULL NULL 141
1 38 NULL NULL 10
1 38 1 NULL 10
2 38 1 NULL 1
1 38 1 8 10
2 38 1 8 1
2 38 16 NULL 140
2 38 16 12 140
</code></pre>
<p>e.g. from this data i would like to find the following rows:</p>
<pre><code>a b c d e
2 38 NULL NULL 141
1 38 1 NULL 10
1 38 1 8 10
2 38 16 NULL 140
2 38 16 12 140
</code></pre>
<p>can someone please point me in the right direction to solve this?</p>
http://stackoverflow.com/questions/220813/programatically-find-tfs-changes-since-last-good-build3Programatically find TFS changes since last good buildabigblackman2008-10-21T04:58:49Z2009-10-19T14:30:16Z
<p>I have several branches in TFS (dev, test, stage) and when I merge changes into the test branch I want the automated build and deploy script to find all the updated SQL files and deploy them to the test database.</p>
<p>I thought I could do this by finding all the changesets associated with the build since the last good build, finding all the sql files in the changesets and deploying them. However I don't seem to be having the changeset associated with the build for some reason so my question is twofold:</p>
<p>1) How do I ensure that a changeset is associated with a particular build?</p>
<p>2) How can I get a list of files that have changed in the branch since the last good build? I have the last successfully built build but I'm unsure how to get the files without checking the changesets (which as mentioned above are not associated with the build!)</p>
http://stackoverflow.com/questions/1403139/iphone-development-bypass-authentication-screen-of-facebook-connect/1587213#15872131Answer by abigblackman for iPhone Development - Bypass Authentication Screen of Facebook Connectabigblackman2009-10-19T06:21:57Z2009-10-19T06:21:57Z<p>You cannot store the user's email and password. This is a violation of the terms of use as Noah mentioned.</p>
<p>What you can do is prompt the user once logged in for the offline_access and publish_stream extended permission (<a href="http://wiki.developers.facebook.com/index.php/Extended%5Fpermission" rel="nofollow">http://wiki.developers.facebook.com/index.php/Extended%5Fpermission</a>) which will stop their session from expiring.</p>
<p>This means you can store the session key in your database along with the uid and will have the ability to perform certain actions without the user having to be logged in.</p>
http://stackoverflow.com/questions/510396/resourceproviderfactory-periodic-refreshing1ResourceProviderFactory periodic refreshingabigblackman2009-02-04T07:27:02Z2009-10-08T14:52:15Z
<p>I've created a custom resource provider which returns strings from our database to use for whatever.</p>
<p>The issue is I haven't found a way to "bust" the cache on these items and reload them from the database. Ideally I'd do this every x minutes or manually when we update the cache and want to reload it.</p>
<p>Technically, that's easy. I'm storing everything in a hashtable so just nuke that and reload when needed. However since the ResourceProviderFactory handles the loading of each resource class and I'm not sure how to enumerate the classes it has created.</p>
<p>An overview of the code:</p>
<pre><code>public class ResourceProvider : IResourceProvider
{
private Dictionary<string, Dictionary<string, object>> _resourceCache
= new Dictionary<string, Dictionary<string, object>>();
private string _virtualPath;
private string _className;
public ResourceProvider(string virtualPath, string className)
{
_virtualPath = virtualPath;
_className = className;
}
public object GetObject(string resourceKey, CultureInfo culture)
{
...
}
}
public class ResourceProviderFactory :System.Web.Compilation.ResourceProviderFactory
{
public override IResourceProvider CreateGlobalResourceProvider(string classKey)
{
return new Cannla.Business.Resource.ResourceProvider(string.Empty, classKey);
}
...
...
}
</code></pre>
<p>What I was planning to do was add a reference every time CreateGlobalResourceProvider is called (e.g. add the new object to a collection and then enumerate that and nuke everything inside that object when I need to) but I'm unsure if this is going to do something weird to the ResourceProviderFactory.</p>
<p>Is there any ResourceProviderFactory IEnumerable method or something that will give me all those objects in a easy way before I go building all this code?</p>
http://stackoverflow.com/questions/1019280/whats-missing-in-cocoa/1036803#10368030Answer by abigblackman for What's missing in Cocoa?abigblackman2009-06-24T07:04:47Z2009-06-24T07:04:47Z<p>Coming into Cocoa from the .NET world I have one request: LINQ!</p>
<p>Over the last few months I have grown to love being able to use LINQ on any collection that comes near me.</p>
http://stackoverflow.com/questions/984631/sms-via-a-nokia-phone-over-a-serial-port1Sms via a nokia phone over a serial portabigblackman2009-06-12T01:33:28Z2009-06-12T08:51:24Z
<p>Hi,</p>
<p>I'm trying to send a sms via a Nokia phone over serial which is easy enough via putty. The commands from the <a href="http://wiki.forum.nokia.com/index.php/Using%5FAT%5Fcommands%5Fto%5Fsend%5Fand%5Fread%5FSMS" rel="nofollow">nokia documentation</a> works fine.</p>
<p>However, trying to send the same commands from a c# application fails miserably. I've run Sysinternals PortMon and can see the commands come through OK, the only difference I can see is in the way it connects but I am having trouble finding the commands that would iron out those differences.</p>
<p>The code I'm running looks a little bit like this</p>
<pre><code>using (SerialPort port = new SerialPort(comPort, 9600, Parity.None, 8, StopBits.One))
{
port.DataReceived += new SerialDataReceivedEventHandler(port_DataReceived);
port.ErrorReceived += new SerialErrorReceivedEventHandler(port_ErrorReceived);
//port.ReceivedBytesThreshold = 1;
port.DtrEnable = true;
port.RtsEnable = true;
port.ReadTimeout = 1;
port.Handshake = Handshake.XOnXOff;
try
{
port.Open();
port.WriteLine("AT");
port.WriteLine("AT+CMGF=1");
port.WriteLine("AT+CMGS=\"" + number + "\"");
port.WriteLine(message);
port.Write(new byte[] { (byte)26 }, 0, 1);
}
finally
{
if (port.IsOpen)
{
port.Close();
}
}
</code></pre>
<p>The differences I'm seeing in the trace from the serial port are</p>
<p>At the start</p>
<pre><code>0.00001844 aspnet_wp.exe IOCTL_SERIAL_SET_HANDFLOW USBSER001 SUCCESS Shake:1 Replace:43 XonLimit:4096 XoffLimit:4096
</code></pre>
<p>And at the very end</p>
<pre><code>0.00061153 aspnet_wp.exe IOCTL_SERIAL_PURGE USBSER001 SUCCESS Purge: RXABORT RXCLEAR
0.00004442 aspnet_wp.exe IOCTL_SERIAL_PURGE USBSER001 SUCCESS Purge: TXABORT TXCLEAR
</code></pre>
<p>Has anyone got any tips on how to iron out these issues? I also notice that the phone is not responding back to the application with any acknowledgement when I issue a command so I suspect the problem is with the connection, not those messages at the end. </p>
http://stackoverflow.com/questions/984967/return-value-from-stored-procedure-not-set/984981#9849811Answer by abigblackman for Return Value from Stored Procedure not setabigblackman2009-06-12T04:22:18Z2009-06-12T04:22:18Z<p>have your tried </p>
<pre><code>ResultValue = SQLreturnValue.Value.ToString()
</code></pre>
<p>I think that's just a syntax thing tho, shouldn't make a diff. </p>
<p>I personally do not have a name for my return param and it works fine:</p>
<pre><code>var returnCode = new SqlParameter();
returnCode.Direction = System.Data.ParameterDirection.ReturnValue;
returnCode.DbType = System.Data.DbType.Int32;
</code></pre>
<p>Maybe the name RETURN_VALUE is messing with it?</p>
http://stackoverflow.com/questions/838809/linq-match-word-with-boundaries/838847#8388470Answer by abigblackman for linq match word with boundariesabigblackman2009-05-08T08:43:05Z2009-05-08T08:43:05Z<p>Maybe a regular expression like this (nb - not compiled or tested):</p>
<pre><code>var matches = from a in yourCollection
where Regex.Match(a.field, ".*\sabc\s.*")
select a;
</code></pre>
http://stackoverflow.com/questions/800910/sql-grouping-by-all-the-columns/800936#8009366Answer by abigblackman for SQL grouping by all the columnsabigblackman2009-04-29T04:58:40Z2009-04-29T04:58:40Z<p>If you are using SqlServer the distinct keyword should work for you. (Not sure about other databases)</p>
<pre><code>declare @t table (a int , b int)
insert into @t (a,b) select 1, 1
insert into @t (a,b) select 1, 2
insert into @t (a,b) select 1, 1
select distinct * from @t
</code></pre>
<p>results in</p>
<pre><code>a b
1 1
1 2
</code></pre>
http://stackoverflow.com/questions/106275/how-to-get-a-distinct-list-of-words-used-in-all-field-records-using-ms-sql/746546#7465460Answer by abigblackman for How to get a distinct list of words used in all Field Records using MS SQL?abigblackman2009-04-14T06:36:47Z2009-04-14T06:36:47Z<p>I just had a similar problem and tried using SQL CLR to solve it. Might be handy to someone</p>
<pre><code>using System;
using System.Data;
using System.Data.SqlClient;
using System.Data.SqlTypes;
using Microsoft.SqlServer.Server;
using System.Collections;
using System.Collections.Generic;
public partial class UserDefinedFunctions
{
private class SplitStrings : IEnumerable
{
private List<string> splits;
public SplitStrings(string toSplit, string splitOn)
{
splits = new List<string>();
// nothing, return empty list
if (string.IsNullOrEmpty(toSplit))
{
return;
}
// return one word
if (string.IsNullOrEmpty(splitOn))
{
splits.Add(toSplit);
return;
}
splits.AddRange(
toSplit.Split(new string[] { splitOn }, StringSplitOptions.RemoveEmptyEntries)
);
}
#region IEnumerable Members
public IEnumerator GetEnumerator()
{
return splits.GetEnumerator();
}
#endregion
}
[Microsoft.SqlServer.Server.SqlFunction(FillRowMethodName = "readRow", TableDefinition = "word nvarchar(255)")]
public static IEnumerable fnc_clr_split_string(string toSplit, string splitOn)
{
return new SplitStrings(toSplit, splitOn);
}
public static void readRow(object inWord, out SqlString word)
{
string w = (string)inWord;
if (string.IsNullOrEmpty(w))
{
word = string.Empty;
return;
}
if (w.Length > 255)
{
w = w.Substring(0, 254);
}
word = w;
}
};
</code></pre>
http://stackoverflow.com/questions/400821/tfs-does-not-build-projects-correctly/652847#6528470Answer by abigblackman for TFS does not build projects correctlyabigblackman2009-03-17T02:32:37Z2009-03-17T02:32:37Z<p>Have a look in the configuration manager and make sure that the build you are running has those projects selected to build. </p>
<p>It may be you are running the Debug configuration for your local build and then running Release on the TFS server and it's not configured the same.</p>
http://stackoverflow.com/questions/641575/multiple-windows-services-one-installer-removing-dependencies0Multiple Windows Services, One Installer, Removing Dependenciesabigblackman2009-03-13T05:28:10Z2009-03-13T05:30:49Z
<p>I have a single service installer project that installs multiple services. This is great but a single unhandled exception in any single service will stop all services that were installed by this installer.</p>
<p>The code for the installer looks something like this</p>
<pre><code>ServiceBase[] ServicesToRun;
ServicesToRun = new ServiceBase[]
{
new Service1() ,
new Service2() ,
...
};
ServiceBase.Run(ServicesToRun);
</code></pre>
<p>So once the service is installed I can see several separate services in the windows service management window and each can be started, stopped, paused, resumed independently.</p>
<p>However if one suffers an unhandled exception then they all stop. </p>
<p>Ideally only the service that had the problem would stop and the other services would continue on their merry way. </p>
<p>Can anyone suggest a way to do this without creating a truly separate installer project for each service?</p>
http://stackoverflow.com/questions/629664/how-to-validate-a-singaporean-fin0How to validate a Singaporean FIN?abigblackman2009-03-10T10:57:43Z2009-03-11T01:29:16Z
<p>Can anyone provide an algorithm to validate a Singaporean FIN?</p>
<p>I know with a Singaporean NRIC I can validate it via modulo 11 and then compare the result to a lookup table but cannot find a similar lookup table for the FIN. </p>
<p>I also do not know for sure if the modulo 11 is the correct method to validate. </p>
<p>I am aware the government sells a algorithm for $400 but maybe someone knows a cheaper way. </p>
<p>Bonus points for c# implementation. </p>
http://stackoverflow.com/questions/629664/how-to-validate-a-singaporean-fin/632985#6329850Answer by abigblackman for How to validate a Singaporean FIN?abigblackman2009-03-11T01:29:16Z2009-03-11T01:29:16Z<p>After a little searching around I found a way to validate them. This doesn't neccersarily mean the FIN is valid, just that it falls within a valid range.</p>
<p>I based it on algorithms from <a href="http://www.ngiam.net/NRIC/ppframe.htm" rel="nofollow">http://www.ngiam.net/NRIC/ppframe.htm</a></p>
<p>I've also included a similar method for checking NRIC because I figure anyone who comes across this and is interested in one is interested in the other as well.</p>
<p>Hope this helps someone!</p>
<pre><code> private static readonly int[] Multiples = { 2, 7, 6, 5, 4, 3, 2 };
public static bool IsNricValid(string nric)
{
if (string.IsNullOrEmpty(nric))
{
return false;
}
// check length
if (nric.Length != 9)
{
return false;
}
int total = 0
, count = 0
, numericNric;
char first = nric[0]
, last = nric[nric.Length - 1];
if (first != 'S' && first != 'T')
{
return false;
}
if (!int.TryParse(nric.Substring(1, nric.Length - 2), out numericNric))
{
return false;
}
while (numericNric != 0)
{
total += numericNric % 10 * Multiples[Multiples.Length - (1 + count++)];
numericNric /= 10;
}
char[] outputs;
if (first == 'S')
{
outputs = new char[] { 'J', 'Z', 'I', 'H', 'G', 'F', 'E', 'D', 'C', 'B', 'A' };
}
else
{
outputs = new char[] { 'G', 'F', 'E', 'D', 'C', 'B', 'A', 'J', 'Z', 'I', 'H' };
}
return last == outputs[total % 11];
}
public static bool IsFinValid(string fin)
{
if (string.IsNullOrEmpty(fin))
{
return false;
}
// check length
if (fin.Length != 9)
{
return false;
}
int total = 0
, count = 0
, numericNric;
char first = fin[0]
, last = fin[fin.Length - 1];
if (first != 'F' && first != 'G')
{
return false;
}
if (!int.TryParse(fin.Substring(1, fin.Length - 2), out numericNric))
{
return false;
}
while (numericNric != 0)
{
total += numericNric % 10 * Multiples[Multiples.Length - (1 + count++)];
numericNric /= 10;
}
char[] outputs;
if (first == 'F')
{
outputs = new char[] { 'X', 'W', 'U', 'T', 'R', 'Q', 'P', 'N', 'M', 'L', 'K' };
}
else
{
outputs = new char[] { 'R', 'Q', 'P', 'N', 'M', 'L', 'K', 'X', 'W', 'U', 'T' };
}
return last == outputs[total % 11];
}
</code></pre>
http://stackoverflow.com/questions/510402/how-can-i-output-a-number-as-a-string-of-bits-in-c/510416#5104161Answer by abigblackman for How can I output a number as a string of bits in C#?abigblackman2009-02-04T07:38:42Z2009-02-04T07:38:42Z<pre><code>Console.WriteLine(Convert.ToString(20, 2));
</code></pre>
http://stackoverflow.com/questions/397824/ms-velocity-vs-memcached-for-windows/491835#4918350Answer by abigblackman for MS Velocity vs Memcached for Windows?abigblackman2009-01-29T14:39:45Z2009-01-29T14:39:45Z<p>Memcached has some open source libraries if I'm not mistaken so if you want to go the 64bit route can you not just recompile?</p>
<p>I evaluated Velocity when it first arrived but came to the conclusion it was a bit undeveloped at that stage. Being able to run memcached on non-windows servers is also a bonus.</p>
http://stackoverflow.com/questions/491345/sql-produced-by-entity-framework-for-string-matching/491768#4917680Answer by abigblackman for SQL produced by Entity Framework for string matchingabigblackman2009-01-29T14:22:31Z2009-01-29T14:22:31Z<p>charindex returns the location of the first term within the second term.</p>
<p>sql starts with 1 as the first location (0 = not found)</p>
<p><a href="http://msdn.microsoft.com/en-us/library/ms186323.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms186323.aspx</a></p>
<p>i don't know why it uses that syntax but that's how it works</p>
http://stackoverflow.com/questions/490618/multiple-javascript-css-files-best-practices/490775#4907750Answer by abigblackman for Multiple javascript/css files: best practices?abigblackman2009-01-29T07:31:28Z2009-01-29T07:31:28Z<p>The idea of minifying and combining the files is great.</p>
<p>I do something similar on my sites but to ease development I suggest some code which looks like this:</p>
<pre><code>if (evironment == production) {
echo "<style>@import(/Styles/Combined.css);</style>"
} else {
echo "<style>@import(/Styles/File1.css);</style>"
echo "<style>@import(/Styles/File2.css);</style>"
}
</code></pre>
<p>This should let you keep your files separate during dev for easy management and use the combined file during deployment for quicker page loads. This assumes you have the ability to combine the files and change variables as part of your deploy process.</p>
<p>Definitely look into including your js at the bottom and the css at the top as per YUI recommendations as keeping the JS low has a tangible affect on the appearance of the rest of the page and feels much faster.</p>
http://stackoverflow.com/questions/408556/does-one-persist-xml-csv-other-through-repositories-services-other/459923#4599231Answer by abigblackman for Does One Persist XML/CSV/Other Through Repositories/Services/Otherabigblackman2009-01-20T02:11:51Z2009-01-20T02:11:51Z<p>While many databases support storing XML directly I think you would be in a world of hurt (from experience) trying to do this. If the schema changes then you need to go and update each record to the new schema.</p>
<p>I would suggest, if you are going to store it in a DB, then store the data in a table which is easier to modify and manage.</p>
<p>Also, you should question why you are storing the data in a database. If you aren't going to be querying the data then storing in a flat file is going to be just as good.</p>
<p>I'm not saying what you are doing is wrong, but think long and hard about your requirements.</p>
http://stackoverflow.com/questions/361775/ie6-extra-padding-on-bottom/361866#3618660Answer by abigblackman for IE6 extra padding on bottomabigblackman2008-12-12T04:07:58Z2008-12-12T04:07:58Z<p>You can also look at something like a <a href="http://meyerweb.com/eric/tools/css/reset/" rel="nofollow">CSS reset style sheet</a> which will let you set up defaults which should be reasonably consistent across browsers. </p>
http://stackoverflow.com/questions/189765/7645-null-or-empty-full-text-predicate57645 Null or empty full-text predicateabigblackman2008-10-10T00:58:07Z2008-12-07T04:38:48Z
<p>I have a query that ran fine on SQL2005 but moving the database to SQL2008 gives me the error from the title.</p>
<p>The code that is the problem is a call to CONTAINS, CONTAINSTABLE or FREETEXT with an empty parameter. However I'm trying to only call or join when there is a value like such</p>
<pre><code>where (@search_term = '' or (FREETEXT(lst.search_text, @search_term)))
</code></pre>
<p>or</p>
<pre><code>left join containstable (listing_search_text, search_text, @search_term) ftb on l.listing_id = ftb.[key]
and len(@search_term) > 0
</code></pre>
<p>However I cannot find any workaround for this to work on SQL2008. Any ideas?</p>
<p>I know I can do dynamic SQL or have a if statement with two different cases (select with FT join, select without FT join. Any better workaround which doesn't require doing this?</p>
http://stackoverflow.com/questions/343078/select-permission-was-denied-on-the-object1SELECT permission was denied on the objectabigblackman2008-12-05T06:55:56Z2008-12-05T07:28:13Z
<p>If have created a custom role within SqlServer which I added to the db__denydatareader and db__denydatawriter roles. I think went through the db and granted exec permission to all neccersary stored procedures. </p>
<p>Everything works fine, calling those sps will run fine. The one exception is a stored procedure which executes dynamic sql by using sp_executesql. This fails saying </p>
<pre><code>The SELECT permission was denied on the object 'listing_counter', database 'Cannla', schema 'dbo'.
</code></pre>
<p>Is there any way to grant the role permission to run this query without giving it select access to the underlying tables?</p>
<p>I guess what I'm wanting to do is grant exec on sys.sp_executesql but only in a certain case.</p>
http://stackoverflow.com/questions/339963/system-transaction-implicit-transaction-messing-with-my-other-connections0System.Transaction implicit transaction messing with my other connectionsabigblackman2008-12-04T09:06:45Z2008-12-04T19:57:18Z
<p>I'm trying to use System.Transaction.TransactionScope to create a transaction to call a few stored procedures but it doesn't seem to clean up after itself. Once the transaction is finished (commited or not and the transaction scope object is disposed) subsequent connections to the database open up with the read commit level of serializable instead of read commited like they normally would. </p>
<p>I'm opening and closing a connection for each call (well closing and returning to a pool of connections like normal in .NET), am I missing some way to explicitly reset the connection when I'm done using it for a transaction? I thought the idea behind System.Transaction.TransactionScope was to hide all the complexity.</p>
<p>So the code I have looks like this:</p>
<pre><code> using (var scope = new TransactionScope())
{
... make my 3 stored procedure calls ...
scope.Complete();
return returnCode;
}
</code></pre>
<p>which I guess is the normal way to do it. But then if I look in sqlserver profiler I can see connections being opened with </p>
<pre><code>set transaction isolation level serializable
</code></pre>
<p>which is messing with subsequent non-transaction related database activity and also is apparently not as fast. I can get around this by setting a transaction option to explicity do the transaction with ReadCommited but this is not the ideal behaviour for this operation in my opinion. </p>
<p>I've also tried explicitly creating a Commitabletransaction object, creating explict new transactions instead of using the ambient one and still no luck. </p>
<p>Any ideas on how to fix this would be much appreciated as any calls that use the serializable connection will throw an error if they try to use a readpast locking hint.</p>
http://stackoverflow.com/questions/319241/session-cookie-lost-with-ie7/320100#3201000Answer by abigblackman for Session cookie lost with IE7abigblackman2008-11-26T09:01:39Z2008-11-26T09:01:39Z<p>The dates are consistant? e.g. 10.09.2008 == 09.10.2008 if the locale is wrong. So if you set a specific expiry it might be interpreting it as en-US but you need en-NZ or something. </p>
<p>Or you could be setting it as a UTC date but the ie computer is UTC+8 so it appears to expire quickly?</p>
http://stackoverflow.com/questions/319732/tips-techniques-for-high-performance-c-server-sockets/319778#319778-2Answer by abigblackman for Tips / techniques for high-performance C# server socketsabigblackman2008-11-26T04:53:50Z2008-11-26T04:53:50Z<p>I don't have an answer but to get more information I'd suggest sprinkling your code with timers and logging avg and max time taken for suspect operations like adding to the queue or opening a socket. </p>
<p>At least that way you will have an idea of what to look at and where to begin.</p>
http://stackoverflow.com/questions/1314627/asp-net-globalization-cultureauto-page-directive-with-neutral-culture-crash/1665121#1665121Comment by abigblackman on ASP.NET Globalization: Culture="auto" page directive with neutral culture crash?abigblackman2009-11-03T03:48:03Z2009-11-03T03:48:03ZThis may not be the exact same problem but you should be looking for some code where you are trying to assign a neutral culture via CurrentUICulture to something expecting a more specific culture that you can access via CurrentCulture.http://stackoverflow.com/questions/1622900/finding-top-n-for-each-unique-row/1622942#1622942Comment by abigblackman on Finding top n for each unique rowabigblackman2009-10-26T03:31:40Z2009-10-26T03:31:40Zthis works great. i knew i was looking for the cte+rank function but the terminology was escaping me http://stackoverflow.com/questions/510396/resourceproviderfactory-periodic-refreshing/1538330#1538330Comment by abigblackman on ResourceProviderFactory periodic refreshingabigblackman2009-10-12T09:27:48Z2009-10-12T09:27:48Zit's not the timing that's the issue, i'm was looking for how to get references to each object created. thanks for the idea however.http://stackoverflow.com/questions/1222498/facebook-show-a-help-dialog/1222555#1222555Comment by abigblackman on Facebook - show a help dialogabigblackman2009-09-29T03:57:32Z2009-09-29T03:57:32Z<div id="RES_IDhelp01"> should be <div id="RES_ID_help01"> from my testinghttp://stackoverflow.com/questions/984631/sms-via-a-nokia-phone-over-a-serial-port/985664#985664Comment by abigblackman on Sms via a nokia phone over a serial portabigblackman2009-06-15T02:59:13Z2009-06-15T02:59:13Zthis is definitely NOT happening. therefore i guess the issue is the line that has the Shake, Replace on it. Guess I better keep trying to figure out what the issue is with that.. Thanks.http://stackoverflow.com/questions/984631/sms-via-a-nokia-phone-over-a-serial-portComment by abigblackman on Sms via a nokia phone over a serial portabigblackman2009-06-12T02:21:48Z2009-06-12T02:21:48ZThe handshake and flow control are the same as putty from waht I can see. To clarify; the Shake:1 Replace:43 is what is different but I'm not sure how to change that.http://stackoverflow.com/questions/917300/what-algorithms-do-the-big-ones-use-to-cluster-news/942484#942484Comment by abigblackman on What algorithms do "the big ones" use to cluster news?abigblackman2009-06-05T04:08:43Z2009-06-05T04:08:43ZI had to look it up so if anyone else needs to - <a href="http://en.wikipedia.org/wiki/Cosine_similarity" rel="nofollow">en.wikipedia.org/wiki/Cosine_similarity</a>http://stackoverflow.com/questions/856442/how-to-forcibly-create-stored-procedure-even-if-some-error-occureComment by abigblackman on How to forcibly create stored procedure even if some error occure?abigblackman2009-05-13T07:13:44Z2009-05-13T07:13:44Zif the table doesn't exist it should still work fine. it just won't check that the columns are valid. same if a dependency is missing - it will just print a message (mssql). if it's got a syntax error then it shouldn't work. just like you can't compile broken code.http://stackoverflow.com/questions/827723/remove-ctl00contentbody-from-rendered-control-idComment by abigblackman on Remove ctl00$ContentBody$ from rendered control IDabigblackman2009-05-06T02:42:31Z2009-05-06T02:42:31ZI cannot find any link to back me up but I believe the next version of .NET will give you the ability to remove this. Until then you'll need a work around.
You could use a normal control and add a literal to set the value e.g. <input type='hidden' name='blah' value='<asp:literal runat="server" id="blahValue" />' />http://stackoverflow.com/questions/827714/a-better-error-handler-code-for-debugging-db-related-methods-in-cComment by abigblackman on A better error handler code for debugging db related methods in C# ?!abigblackman2009-05-06T02:13:40Z2009-05-06T02:13:40Zit looks like a LOT of code duplication. That would be the first thing I would look into refactoring out.http://stackoverflow.com/questions/801258/redirect-document-write-from-javascript-script/801276#801276Comment by abigblackman on Redirect document.write from javascript scriptabigblackman2009-04-29T07:55:21Z2009-04-29T07:55:21Zgreat idea.
i've basically changed to:
document.load = function(){
var adArea = $('ad');
adArea.innerHtml = "<iframe ...></iframe>";
}
this seems to work well. thanks http://stackoverflow.com/questions/801258/redirect-document-write-from-javascript-script/801290#801290Comment by abigblackman on Redirect document.write from javascript scriptabigblackman2009-04-29T07:54:02Z2009-04-29T07:54:02Zi don't believe i can do this because i cannot edit the external script that has the document.write in it.http://stackoverflow.com/questions/801115/how-best-to-screen-scrape-a-password-protected-site-on-behalf-of-a-3rd-partyComment by abigblackman on How best to screen scrape a password protected site on behalf of a 3rd party?abigblackman2009-04-29T07:30:45Z2009-04-29T07:30:45Zyahoo supports openid so you may be able to get access to an api via that?http://stackoverflow.com/questions/801258/redirect-document-write-from-javascript-scriptComment by abigblackman on Redirect document.write from javascript scriptabigblackman2009-04-29T07:29:11Z2009-04-29T07:29:11Zwe considered caching the content of the calls and serving that but we get a unique link and image served for each request which cancels out doing that. i realise this is maybe a little obsessive but adding an extra .7sec to each request is making each page take twice as long to load.http://stackoverflow.com/questions/641575/multiple-windows-services-one-installer-removing-dependencies/641581#641581Comment by abigblackman on Multiple Windows Services, One Installer, Removing Dependenciesabigblackman2009-03-16T03:02:29Z2009-03-16T03:02:29ZI'll rate you for the comment then. If it's not possible to avoid the assembly dying if there is an exception then I guess I'll just have to create truly separate services. Thanks