Viewing 15 posts - 241 through 255 (of 820 total)
Have we talked about REPLACE INTO? I'm still longing for the alternative syntax for INSERT.
INSERT INTO [###_120978_@@#@]
SET [ Key]='2863485278',
[ CustomerId]=78496,
[ ShippingAddressID]=12782,
[ TakenByID]=345,
[ OrderStarted]=GETUTCDATE()
May 11, 2010 at 9:21 am
majorbloodnock (5/10/2010)
That said,...
May 10, 2010 at 3:28 pm
I was asked if I was going to write my life story. No. But I thought about writing the amusing stories that have happened over the years. ...
May 7, 2010 at 8:36 am
There are three main component categories for a system:
"Hardware" - physical devices. How many programmers does it take to change a light bulb? None. That's a hardware...
May 7, 2010 at 8:12 am
GSquared (4/1/2010)
My shoelaces are untied? Thanks! Wait .... 😀
One thing good about a progressive disability. I've "graduated" to Velcro on my shoes. They can't pull that...
April 1, 2010 at 7:54 am
I agree with what has been said. Disk space is a big issue. Also if your restore fails part way through will SQL server have enough resources to...
March 22, 2010 at 8:54 am
Here is a case example:
Customer X has a couple dozen facilities. Product is transferred between facilities routinely. When transferring from A to B they "moved" the inventory from...
March 18, 2010 at 7:50 am
Yes you all have it right nut have not stated why.
In SQL a carriage return or two adds readability. We get into the habit of it and it's not...
March 9, 2010 at 6:20 am
Well you are right. A person under the influence (of what? fill in the blank) should be able to refuse work. I contend that it is your responsibility...
March 8, 2010 at 6:44 am
Clustered Indexes remove the data from the base table and store the data along with the pointer to the row in the table in the Clustered Index.
Well you...
January 19, 2010 at 11:21 am
OK stand by for the rant here.
One of the best things that happened at the dental company was that the development team worked for the support manager. It did...
January 7, 2010 at 8:51 am
You are going to just love this one! Try it like this:exec dbo.sp_msforeachtable 'select * from ?'
Note the lack of brackets. Go figure.
January 6, 2010 at 11:02 am
Given the set A which is a set of all sets that do not contain themselves as proper subsets, is set A in set A?
The infinite loop usually does not...
January 6, 2010 at 8:42 am
I would use this form:SELECT SomeThing
FROM wce_history
WHERE recordedtime >= DATEADD(MONTH, -2, DATEDIFF(DAY, 0, GETDATE()))
As others have pointed out there are issues with the time portion of datetime. ...
January 5, 2010 at 1:47 pm
Viewing 15 posts - 241 through 255 (of 820 total)