Viewing 15 posts - 631 through 645 (of 4,820 total)
Below is my code.
September 11, 2018 at 7:48 am
vicki.l.lucht - Monday, September 10, 2018 11:45 AMwouldn't there be clues in the log on something like that?
Not if the log is...
September 11, 2018 at 7:23 am
September 11, 2018 at 6:34 am
It may be possible that your database log file runs out of disk space. You might be able to use BULK INSERT with a format file instead...
September 10, 2018 at 11:39 am
September 10, 2018 at 10:48 am
September 10, 2018 at 9:47 am
The method needed is to first generate a list of dates and prices, and then group those values by product and the fact that the price changed between a pair...
September 10, 2018 at 7:40 am
As I don;t know SSAS at any level of detail, I'm not aware of how one does that, but from a practical perspective, unless there is some unknown performance degradation...
September 7, 2018 at 6:03 am
NikosV,
Just to try and put some clarity on this. There are so many possible approaches to this that picking one over the other would absolutely require fairly detailed...
September 6, 2018 at 11:55 am
Just to demonstrate the validity of the code provided by Rick-153145. try running this:SET NOCOUNT ON;
DECLARE @Today AS date = '20180902';
WITH Numbers AS (
SELECT...
September 6, 2018 at 7:47 am
IF OBJECT_ID ('tempdb..#TempNumerics','U') IS NOT...
September 5, 2018 at 1:59 pm
You are using the wrong measure to determine the number of bytes of storage. LEN and DATALENGTH are string functions. LEN does not include trailing spaces, which is why DATALENGTH...
September 5, 2018 at 9:02 am
September 4, 2018 at 7:19 am
I can only presume you chose to NOT read Jeff's signature links and put the data in "readily consumable" form. That is NOT a spreadsheet, as many are unwilling to...
September 4, 2018 at 6:48 am
Sorry, but that's not the functionality of BULK INSERT. If you want that kind of row by row examination, you have to use SSIS instead.
August 31, 2018 at 10:16 am
Viewing 15 posts - 631 through 645 (of 4,820 total)