Viewing 15 posts - 16 through 30 (of 31 total)
When I was looking at the code I noticed that you were searching for "tempdb..#temp" and all other references in the script were to "#temp" without the database reference.
June 11, 2013 at 11:35 am
Excellent. I am adding this to my library. We had many problems with SQL Server based email because of the overhead, admittedly very small for one email. The problem is...
May 9, 2013 at 10:48 am
It totally depends on the level of PCI compliance. I don't remember where it was and I am no longer at that company. It was not specifically spelled out in...
February 19, 2013 at 10:58 am
Using stored procedures is a requirement for PCI compliance. It is one of the requirements that slows down or stops all manner of nasties (well delineated in earlier posts). If...
February 19, 2013 at 10:31 am
Your answer told me that I was having problems with the browser (Chrome). Tried it with Firefox - works well.
February 11, 2013 at 11:41 am
Couldn't get yours to work. Too many errors in the post. We're using this one. I wanted to see the difference. The table of holidays contains only holidays that fall...
February 8, 2013 at 5:38 pm
Since our apps are primarily web pages we step around the problem by converting the problem characters to unicode. The single quote character is converted to "'". It no...
January 7, 2013 at 11:46 pm
We used to do this when the code was placed in an off-site computer. It makes it more difficult for personal who aren't supposed to be in it to mess...
July 4, 2012 at 2:55 pm
Change the statement
DECLARE c CURSOR FOR
to
DECLARE c CURSOR LOCAL FAST_FORWARD READ_ONLY FOR
and test the speed difference.
July 2, 2012 at 10:57 am
Nice idea. I tested it on 2000, 2005, and 2008. It works well on all of them.
June 29, 2012 at 8:36 am
One way to make a difficult problem more difficult is to make it difficult to see. Remove the formatting and it becomes more difficult for a programmer to decipher. Proper...
June 9, 2012 at 12:37 pm
Very nice. I'm curious if the SQLDOM is using HTML5.
In that case the <BR>
would become <br />. Any of the tags that do not have a closing tag, such...
April 16, 2012 at 9:41 am
Our inhouse method of doing this for today's date is:
DATEDIFF(d, 0, GETDATE())
or for a general date from the DB:
DATEDIFF(d, 0, DateField)
DATEDIFF may be more expensive, but is it more expensive...
June 14, 2011 at 9:59 am
There are several errors in the code as presented. Please clean your code before you publish it.
February 23, 2011 at 1:41 pm
Since I got my degree before there was a computer science degree at CSULB, I initially put my math degree to work in teaching. 100 years ago, I would have...
October 29, 2010 at 11:05 am
Viewing 15 posts - 16 through 30 (of 31 total)