Viewing 15 posts - 1 through 15 (of 53 total)
Luis Cazares (9/9/2015)
while
process a chunk
set...
September 9, 2015 at 8:45 am
Sure, there are 90 million rows, which I have load to two corresponding tables. If one fails, the other shouldn't be loaded as well.
I think about doing this...
September 9, 2015 at 7:34 am
I tried to remove the sequence as well. But the problem is still not solved.
It is weird, as I tried to reproduced the issue with a simplified sample, but was...
September 5, 2015 at 1:59 pm
ScottPletcher (9/4/2015)
September 4, 2015 at 12:33 pm
Grant Fritchey (9/4/2015)
Use Extended Events to capture the execution of the queries instead of writing to a log table.
I will consider it on the next solution. Current solution is nearly...
September 4, 2015 at 9:46 am
spaghettidba (9/4/2015)
1) Don't log from the stored procedures. Use a different connection from the application.
2) Log to a table variable and dump the logs to the permanent log table...
September 4, 2015 at 9:39 am
yes - Its not only one report but all reports which are looking fine on another server. I simply deployed these reports to the new ssrs installation. so I think...
January 30, 2012 at 6:53 am
I have tested it with firefox and ie and from differed os. No difference..
January 29, 2012 at 3:01 pm
Actually, performing loops and tests in other languages is much easier. T-SQL is not that great a language in regards to either performance or feature sets. T-SQL's main advantage is...
January 11, 2012 at 1:22 am
Regarding the datatype discussion:
I think it's a great idea to copy data to staging tables using a varchar datatype in the first step. You can check the datatypes in the...
January 10, 2012 at 3:55 am
Meanwhile I found out, if I start internet explorer "as Administrator", it works. If I just doubleclick ie I have the described problem.
So, I think, the cause is found.
Thank...
April 9, 2010 at 3:07 am
Yes I am. It's Windows 7, perhaps this is the cause?
April 5, 2010 at 3:50 pm
try this:
-- creating testdata
if object_id('tempdb..#datetab') is not null
drop table #datetab
create table #datetab(
datecol datetime
)
insert into #datetab (datecol) values ('20091203')
insert into #datetab (datecol) values ('20091203')
insert into...
December 3, 2009 at 12:45 am
Viewing 15 posts - 1 through 15 (of 53 total)