Viewing 15 posts - 8,521 through 8,535 (of 39,771 total)
The TIFF file should be in a binary format (binary or varbinary). This means you need to extract the binary data and write it to a file.
I'm guessing that...
February 24, 2016 at 9:24 am
The answers have been updated, and I'm awarding back points to this time.
Steve
February 24, 2016 at 8:44 am
A backup is copy of the pages. There is no effort made to recompute anything or look at the contents. They are copied to disk on backup, copied back on...
February 23, 2016 at 5:56 pm
The main reasons have been listed. Using normalized storage gives you slightly more complex queries with joins, but easier updates, easier and simpler growth if you expand the model, less...
February 23, 2016 at 5:51 pm
I know, lots of management doesn't. However devs still get value. Write the tests to exercise your code, so that when you alter it, you know if it still works.
February 23, 2016 at 5:49 pm
Alan.B (2/23/2016)
February 23, 2016 at 5:15 pm
The R or Python stuff is useful if the statistical work is more complex. Most of what can be done in R can easily work in Python, which is a...
February 23, 2016 at 1:03 pm
Insert is a modification. In this case, you shouldn't have collisions, but there are ways to handle things. I'd urge you to look at replication.
February 23, 2016 at 9:36 am
Eric M Russell (2/23/2016)
February 23, 2016 at 9:31 am
kiwood (2/23/2016)
February 23, 2016 at 9:27 am
philcart (2/23/2016)
The Infrastructure guys here have become...
February 23, 2016 at 9:26 am
If you have collation conflicts, then add a collation statement to the queries to resolve things. That's better than wrapping queries in this try..catch.
Here's an example: http://www.sqlservercentral.com/articles/Administration/collate_part1/875/
February 23, 2016 at 9:24 am
Can the table be changed on any node, or is there a master table that controls writes?
It's easier if there is a master, but you can implement Peer to Peer...
February 23, 2016 at 9:22 am
There would be a table for grades. ZZMartin provided an example.
The idea here is to not get locked into changing tables constantly. You should have a table for the subject,...
February 23, 2016 at 9:12 am
As Jamie wrote. Have a specific, curated set of data. Know the opening state, make the change, query for the end state, which you should know.
To do this right, you...
February 23, 2016 at 9:09 am
Viewing 15 posts - 8,521 through 8,535 (of 39,771 total)