Viewing 15 posts - 796 through 810 (of 1,233 total)
Glad you worked this out, as I suspected from reading the thread that it was some strange conversion taking place. I have found that converting to string in these situations...
January 6, 2015 at 1:53 pm
You could include both of the timestamp datetime fields in your table design. Call one like DateTimeModified, the other like DateTimeLoaded. In your (I assume) daily ETL you could select...
January 1, 2015 at 5:07 pm
Is this a one time event? If so I can offer a quick and dirty method :
1. In SSMS go to Tools > Options > Query Results>SQL Server> Results to...
January 1, 2015 at 4:57 pm
bantrim (12/31/2014)
MMartin1 (12/31/2014)
January 1, 2015 at 4:32 pm
DonlSimpson (12/31/2014)
MMartin1 (12/31/2014)
DonlSimpson (12/30/2014)
Or build a calendar table and use it in a dataset.
How would this be different? Would you have fields in the table to denote first Tuesday of...
December 31, 2014 at 4:30 pm
One of the tweaks I do is alter the max rows per batch and or commit size when transferring millions or rows with SSIS's, dataflow's ole db destination. This optimises...
December 31, 2014 at 4:21 pm
I have to wonder why you need to use a batch file. Do you need to schedule the package with Windows Task Scheduler? I myself prefer the SQL Server Agent...
December 31, 2014 at 2:31 pm
Do you have access to SSIS? You could query the data with the use of a data source component, of the dataflow task. It is much faster than a linked...
December 31, 2014 at 2:20 pm
ikrami2000 (12/30/2014)
December 31, 2014 at 1:51 pm
DonlSimpson (12/30/2014)
Or build a calendar table and use it in a dataset.
How would this be different? Would you have fields in the table to denote first Tuesday of the month,...
December 31, 2014 at 10:40 am
Did you try building a dataset to calculate each default date that you want ? You could then use those data sets, one for the from date and the other...
December 30, 2014 at 1:02 pm
Out of curiosity, any performance considerations with logon triggers that you are aware of?
December 29, 2014 at 6:24 pm
KoldCoffee (12/28/2014)
December 29, 2014 at 6:18 pm
gissah (12/27/2014)
=IIF(Month(Parameters!EndDate.Value) > MAX(Fields!OrderMonth.Value),
give me the current value by:
Let say Goal = 1000
Order month = month order was purchased
12=...
December 29, 2014 at 6:03 pm
Create a table valued function that returns the delimited string as a column in a table. Join whatever table you are working on to this table (valued function) on the...
December 26, 2014 at 3:16 pm
Viewing 15 posts - 796 through 810 (of 1,233 total)