0
votes
Which is faster/best? SELECT * or SELECT column1, colum2, column3, etc.
If you need every column then just use SELECT * but remember that the order could potentially change so when you are consuming the results access them by name and not by index.
I would igno …
0
votes
Attaching an ID/Label to LINQ to SQL generated code?
There is no public way to modify the underlying SQL that LINQ to SQL generates to implement such a tagging facility. You could implement the Log property in such a way it writes out a text log fil …
1
vote
Visual Studio 2008 crashes horribly
Visual Studio 2008 is just an application, no application should be able to cause your machine to reboot like that.
What can cause your machine to reboot like that is drivers and hardware.. …
3
votes
Cross apply in Linq
The only way to use it would be to wrap the above code in a stored procedure and wrap it with LINQ to SQL.
[)amien
…
4
votes
LINQ to SQL with RDBMS other than MS SQL Server
Microsoft has no plans to extend LINQ to SQL beyond SQL Server and it wouldn't make much sense to do so. The majority of code in LINQ to SQL is in the implementation of the SQL Provider.
Mi …
0
votes
Why does SQL Server’s GUI mangle my views?
It's the result of the view GUI parsing the SQL into it's own internal DOM style format and then writing it back out - much in the same way that HTML editors take in XHTML and emit stuff differentl …
2
votes
What is the difference between drop table and delete table in SQL Server?
One of these performs a delete, the other provides you with the TSQL script to do a delete so you can modify or use it elsewhere.
…
