Viewing 15 posts - 3,601 through 3,615 (of 11,678 total)
Nevyn (3/5/2014)
Koen Verbeeck (3/5/2014)
Setting the commit size to a lower value will commit batches before the entire load is done....
March 5, 2014 at 7:15 am
I doubt it if there will ever be training kits for these exams. Especially 70-467, that exam is geared towards users with experience with the BI stack, not people who...
March 5, 2014 at 6:31 am
According to BOL (emphasis is mine):
COUNT(ALL expression) evaluates expression for each row in a group and returns the number of nonnull values.
ALL is the default.
March 5, 2014 at 6:17 am
John Mitchell-245523 (3/5/2014)
Koen Verbeeck (3/5/2014)
Setting the commit size to a lower value will commit batches before the entire load is...
March 5, 2014 at 5:43 am
Interesting question, but I do not agree entirely with the answer.
Setting the commit size to a lower value will commit batches before the entire load is done. What if something...
March 5, 2014 at 2:57 am
peter2501 (3/5/2014)
The current_timestamp is from SQL, it work fine.
Indeed it does, didn't even know it existed on SQL Server 😀
March 5, 2014 at 1:10 am
What is the error the source is giving?
March 5, 2014 at 12:06 am
Jeff Moden (3/4/2014)
Koen Verbeeck (3/4/2014)
You can use FROM OPENROWSET to read an excel file,...
March 4, 2014 at 3:15 pm
At 1000 pages, SSRS just seems the wrong tool for the job.
A clever .NET program will probably be more efficient.
March 4, 2014 at 2:49 pm
Why don't you just use the precedence constraint with the OnFailure option (the red arrows)?
March 4, 2014 at 2:21 pm
ms-techie (2/23/2014)
We have a total of 25 jobs like this....
March 4, 2014 at 2:18 pm
I'm not sure you can read Excel with bcp (you can write to Excel with bcp though).
You can use FROM OPENROWSET to read an excel file, or just use SSIS...
March 4, 2014 at 2:15 pm
sqlbuddy123 (3/4/2014)
Thought fast load was available for Oracle destination too. May be I missed it ..--
SQLBuddy
It depends on the OLE DB provider I think.
It's possible the Microsoft OLE DB provider...
March 4, 2014 at 12:48 pm
I think the difference is due to the leap year bug in Excel:
http://www.ozgrid.com/Excel/ExcelDateandTimes.htm
Select (1/(SUM(Rows)/1846415)) * (CURRENT_TIMESTAMP - '2014-03-04 10:51:00.380')
This won't work as CURRENT_TIMESTAMP is Oracle and SUM(Rows) is not possible...
March 4, 2014 at 6:50 am
Your statement won't work 100%, because if only one is missing, nothing is inserted at all.
Try this:
WITH CTE_InsertValues AS
(
SELECT UserID = 200, GroupID = 100
...
March 4, 2014 at 12:20 am
Viewing 15 posts - 3,601 through 3,615 (of 11,678 total)