Viewing 15 posts - 496 through 510 (of 1,957 total)
mburbea (5/9/2014)
May 9, 2014 at 6:06 pm
Nice tips, but be careful with statements like this:
The case doesn't change the logic
In a case sensitive installation/database, it most certainly can change the logic as you must be consistent...
May 7, 2014 at 5:56 pm
can you connect to the reportserver webservices?
e.g. http://<server>/ReportServer_<instance>/ReportService2005.asmx
May 7, 2014 at 5:41 pm
It's interesting that you used fetch first N instead of TOP(N).
Was there a performance improvement or just personal preference?
May 4, 2014 at 3:25 am
Another way....
select datediff(second,0,cast(replace(replace(replace(fix.duration,' hrs ',':'),' min ',':'),' sec','') as datetime))
from #tmp t
cross apply (
select
case
when len(t.duration)<8 then '0 hrs 0 min '
when...
May 2, 2014 at 5:05 pm
Or I have a crappy 2012 install?
April 30, 2014 at 1:36 pm
I get the same crappy performance on 2012 as 2014 for these...I haven't got a 2008 to test on right now.
April 30, 2014 at 1:16 pm
Eirikur Eiriksson (4/30/2014)
April 30, 2014 at 7:07 am
Glad to help, and I hope your debugging goes well!
April 29, 2014 at 6:10 pm
SQL 2014 is kinda cool...
I just tried out using a memory optimized table for the Tally / Numbers table in DelimitedSplit8K and two things stand out.
1. It seems to be...
April 29, 2014 at 5:54 pm
It sounds like you don't have asp.net enabled.
Try reading this to see if it helps : http://www.iis.net/learn/get-started/whats-new-in-iis-8/iis-80-using-aspnet-35-and-aspnet-45
April 29, 2014 at 4:44 pm
Grant Fritchey (4/29/2014)
Try using the WAITFOR command in T-SQL. That'll pause the execution of the query and you should see a timeout.
Except that will be a Command Timeout, not a...
April 29, 2014 at 4:42 pm
You could also try the /resetsettings switch or /setup
See here http://msdn.microsoft.com/en-us/library/xee0c8y7(v=vs.90).aspx
April 27, 2014 at 2:59 am
From mssqltips: http://www.mssqltips.com/sqlservertip/1840/sql-server-integration-services-ssis-best-practices/%5B/url%5D
Keep Identity - By default this setting is unchecked which means the destination table (if it has an identity column) will create identity values on its own. If...
April 26, 2014 at 5:06 pm
I use this tool http://smtp4dev.codeplex.com/releases/view/71614
It acts like an SMTP server, but does not forward the emails on, they just sit there for you to view.
April 26, 2014 at 4:56 pm
Viewing 15 posts - 496 through 510 (of 1,957 total)