Viewing 12 posts - 1 through 12 (of 12 total)
It's literally just simple html. Like if you had this as a survey title:
<b>Come and get it</b> - we <i>love</i> hamburger helper
I just need to confirm that tags match...
March 23, 2010 at 11:43 am
What I meant to say when I said it's not a poorly performing query is that the sql generated is very efficient. The query itself still takes too long to...
March 17, 2010 at 6:20 am
I think I solved this so I'll update this for future posters.
When disassembling the RPC call and replacing all the parameters in the tsql with real values, I was forced...
March 16, 2010 at 9:55 am
Probably a misconception due to the fact that a Primary Key DOES add a unique index by nature.
March 15, 2010 at 12:47 pm
I found a solution for this problem. Call this javascript function from the body onload event:
function HtmlReplace(){
var divs=document.getElementsByTagName("DIV");
for(var i=0;i<divs.length;i++){
...
May 12, 2008 at 8:46 am
Thanks Michael. I had just tried the first solution and you're right. No workee. I'll take a look at solution #2 and see if it provides some insight.
Stay tuned.
Thanks.
dn
January 2, 2008 at 1:10 pm
I took snapshots of the production data every day for two weeks so my development environment was always working on the actual data volume that I was going to be...
August 22, 2007 at 6:40 am
Thanks crispin. I overlooked the fact that the OLE DB Command would execute sql. It makes sense though. What else would it be for.
I hear you about it being...
June 18, 2007 at 10:25 am
This could take hours depending on your hardware. It will add a int column, set its identity property to true, make it a primary key, and create a unique clustered...
April 5, 2007 at 9:53 am
I found this in BOL.
"If the log contains multiple physical log files, then the logical log will move through all of the physical log files before it wraps back...
April 5, 2007 at 8:29 am
In fact it is not a good idea at all to install sql server on a domain controller.
April 5, 2007 at 8:24 am
You should be able to add a integer column with the Identity property set to true on this table. Setting the identity property will not only generate the artibtrary ID's,...
April 5, 2007 at 8:15 am
Viewing 12 posts - 1 through 12 (of 12 total)