Viewing 15 posts - 796 through 810 (of 1,229 total)
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
declare tmpcursor cursor for
select 'kill ' + convert(varchar, spid) as spid
from master..sysprocesses
where db_name(dbid) = @dbname
and spid <> @@spid
and dbid <> 0
Markus out of curiosity,...
December 26, 2014 at 2:21 pm
In more detail, what exactly is the code 'supposed' to do ?
December 26, 2014 at 1:13 pm
I think this is related to why I get faster results in SSMS when I export to text rather than to grid. The rendering engine plays a part in the...
December 19, 2014 at 6:49 pm
Thanks for the feedback, glad this worked out for you.
December 19, 2014 at 6:03 pm
Viewing 15 posts - 796 through 810 (of 1,229 total)