Viewing 15 posts - 2,476 through 2,490 (of 3,348 total)
I have to agree with the others that adding a WHERE clause to all INSERT statements is not a good workaround, for the reasons already given (not robust, not possible...
December 2, 2010 at 3:42 am
I have some already seen several posts about how useless ISNUMERIC() is, and how SQL Server lacks a function that tests is a value can actually be cast to a...
December 1, 2010 at 4:29 pm
sknox (11/30/2010)
Hugo, I do hope that you've posted the same excellent analysis as a comment to the Microsoft documentation... ๐
Thanks! ๐
And no, I did not. But I did submit it...
November 30, 2010 at 8:36 am
An interesting question.
I will not debate the quality of the question, but I will debate the quality of the documentation. Not the documentation that is linked to (this is a...
November 30, 2010 at 1:52 am
Gopinath Srirangan (11/25/2010)
How do we filter the result using WHERE and HAVING clause as used in group by
Say like...
select MAX(TaxRate) AS 'Tax Rate',StateProvinceID
from Sales.SalesTaxRate where Name <> 'Canadian GST'
group...
November 25, 2010 at 7:41 am
Toreador (11/24/2010)
I've never found this to be a problem though. Under what circumstances would you want to do DDL in a transaction?
I do that all the time. I develop a...
November 24, 2010 at 9:18 am
richardd (11/24/2010)
November 24, 2010 at 7:05 am
Good question. Many people (24% at this time) tend to think that DDL is somehow excluded from rollbacks, so it's good to help educate them.
I was unaware of the issue...
November 24, 2010 at 5:10 am
bitbucket-25253 (11/23/2010)
CREATE the temptable as ##
Run the insert code ... do NOT close that instance of SSMS.
Perform the SELECT * FROM ## statement .. right it returns...
November 23, 2010 at 9:14 am
bitbucket-25253 (11/23/2010)
Hugo Kornelis
The server does not matter, the client does. You need at least the SSMS version that ships with SQL Server 2005. It should work against any version...
November 23, 2010 at 9:12 am
Nice question, fairly basic. I agree that the # trickery is a bit unnecessary.
Minor bitching about the title and explanation:
1) GO is not a T-SQL statement. It's a batch seperator...
November 23, 2010 at 6:23 am
Randhir Singh (11/22/2010)
Good question!!!I just want to add few lines here..
1. sysobjects is a view not table
And a deprecated one to boot. New code should use the new system views....
November 22, 2010 at 4:55 am
amenjonathan (11/19/2010)
November 19, 2010 at 12:38 pm
Andy Leonard (11/19/2010)
Hugo: I am considering every option for course deliveries.(...)
Contact me if I can help you sir.
Sir? I'm not called a sir very often!
Thanks for offering those opportunities, but...
November 19, 2010 at 11:39 am
Good question. I tried to find the asnwer on the internet, but failed, then had to use my common sense to choose an answer.
Andy, is there any reference (other than...
November 19, 2010 at 4:24 am
Viewing 15 posts - 2,476 through 2,490 (of 3,348 total)