Viewing 15 posts - 1,996 through 2,010 (of 4,820 total)
October 20, 2017 at 10:09 am
ID | AVG | INC
-----------------------
1 | ...
October 20, 2017 at 9:31 am
Active Directory needs to have a trust relationship with the other domain in order for the two domains to trust any connectivity. Google that, and consider whether or not you...
October 20, 2017 at 8:39 am
October 20, 2017 at 8:31 am
Without a specialized data comparison tool, this is NOT an easy task. T-SQL doesn't really have much for data comparison on a column by column basis. While you can use...
October 20, 2017 at 8:14 am
October 20, 2017 at 8:04 am
You already have code that does the job, given your table structure. SUM() and AVG() are designed to operate over any number of rows, and not over some number of...
October 20, 2017 at 8:01 am
I'm not aware of any setting that will bypass that kind of security. Also, ask yourself this question: Would you want spreadsheets that are "protected" to be so easily compromised?
October 19, 2017 at 1:59 pm
And just assuming that you have your data files properly described, the error you are getting clearly indicates that there's data in your file that doesn't fit into your data...
October 19, 2017 at 1:50 pm
Nice ideas, folks. Currently, my code runs in ~20 ms (in my environment) when splitting a 61K varchar(max) value into 8 chunks, and at the moment, that's a bit less...
October 19, 2017 at 12:30 pm
My gut says a calendar table in your database with a bit column for holiday or not and indexed on that column then by the date, could have rows between...
October 19, 2017 at 11:38 am
October 19, 2017 at 7:05 am
You may need to specify the correct collation for every individual column, if it differs from your database default collation. Not sure if there's a method to specify it for...
October 19, 2017 at 6:37 am
OPENQUERY or OPENROWSET can at least limit the amount of data that has to traverse the network to your local server from the linked server. The important thing to recognize...
October 19, 2017 at 6:21 am
Viewing 15 posts - 1,996 through 2,010 (of 4,820 total)