Viewing 15 posts - 256 through 270 (of 14,952 total)
Can you set up a Hello World app and run that as a test? Something simple that just writes a line to a text file or something like that?...
January 2, 2013 at 9:21 am
If you want snapshot by default, you need to set Read Committed Snapshot Isolation. http://msdn.microsoft.com/en-us/library/ms175095(v=SQL.105).aspx
Otherwise, allowing snapshot isolation just allows it. It doesn't set it as the default,...
January 2, 2013 at 8:58 am
If you'll need the extra money in 2-3 years, then you need it now. Don't wait.
Save as much as you possibly can over the 2-3 years, and the needs...
January 2, 2013 at 8:53 am
Yeah, the not null constraint is tricky.
If you really need it, try using GUIDs instead of an identity column. GUIDs (uniqueidentifier datatype) can be generated in the application, so...
January 2, 2013 at 7:11 am
Since the usual model is NULL = top level, there isn't a built-in method to bypass that, so you're going to be stuck with custom code and solutions.
If you want...
December 28, 2012 at 6:50 am
There are object-oriented database engines available. Cache is one of them, for example. They have the OO properties that you are looking for. If you absolutely have...
December 27, 2012 at 10:33 am
You can do what you're trying. Try this:
USE ProofOfConcept;
GO
CREATE TABLE dbo.SelfReferencing
(ID INT IDENTITY
PRIMARY...
December 27, 2012 at 10:26 am
One good article on temp and variable: http://www.simple-talk.com/sql/t-sql-programming/temporary-tables-in-sql-server/
Answer from Microsoft on where (RAM vs disk) temp tables and table variables are created: http://support.microsoft.com/kb/305977
Relevant quote (from Q4):
If memory is available, both...
December 27, 2012 at 7:23 am
I wouldn't bother using a RAM disk for tempdb.
Most of what accesses tempdb will already be perfectly happy to live in RAM till it runs out and has to use...
December 20, 2012 at 10:55 am
Narud (12/20/2012)
Unfortunatelly looks like the car's industry isn't worried about security when implements technologic improvements for its vehicles.http://www.computerworld.com/s/article/9229919/Car_hacking_Remote_access_and_other_security_issues
Actually, if you read to the end of the article, it lays several...
December 20, 2012 at 10:49 am
Dave Ballantyne (12/19/2012)
You will see that it has converted the predicate to a date range
ie
>= Date and <...
December 20, 2012 at 7:17 am
Joe, I've seen your "tricks" that pretend to avoid date gaps.
I've already proved to you that they do not work. They allow gaps, they allow overlaps. I showed...
December 20, 2012 at 7:06 am
If you want to know what "trumps" what, take a look at a few dozen job postings on Monster or some such.
You'll find a few that require experience and education...
December 20, 2012 at 7:03 am
Viewing 15 posts - 256 through 270 (of 14,952 total)