Viewing 15 posts - 1 through 15 (of 20 total)
Ahhh... don't your results and conclusion contradict themselves?
Results:
"The File System task is the worst option and the slowest one with 130 seconds"
Conclusion:
"As you can...
May 14, 2017 at 4:19 am
This inconsistency in type conversions, IMO is ridiculous. If you can convert to one numeric type with an empty string, you should be able to convert to other numeric types...
March 16, 2016 at 7:35 pm
Hi Jayanth,
Unfortunately on 2008 🙁 so can't use Column Store indexes, damn. These big tables are often updated too, so column store wouldn't work (read only when put on a...
July 8, 2015 at 5:52 am
Oh, one last thing I will do:
+ Add a rebuild/reorganise maintenance task which will detect and rebuild (occasionally) or reorganise indexes as needed. Current fragmentation on some of these indexes...
July 8, 2015 at 3:40 am
Hi Gail, thanks, normally I would agree! This is something I am working on in "downtime" between being handed more important work. I won't go further than I need, but...
July 8, 2015 at 3:33 am
Thanks Grant. I am up to the investigation stage really, have working tables structured the way I want (in test) now and are checking them out.
The clustering on a...
July 8, 2015 at 3:29 am
Not related to SQL Server but related to Microsofts awesome site, try downloading their Malicious software removal tool and you will get to here:
http://www.microsoft.com/en-us/download/malicious-software-removal-tool-details.aspx
Completely awesome. The most important...
May 21, 2013 at 3:38 am
I also need it.
The link on this page: http://www.microsoft.com/en-us/sqlserver/get-sql-server/try-it.aspx
takes you here: http://www.microsoft.com/betaexperience/pd/SQL2012EvalCTA/enus/default.aspx
Yet the files for both 64 and 32 bit won't download. The iso files get...
May 21, 2013 at 3:32 am
True, I guess the evaluation will still work for 180 days, hopefully by that time they would have sorted this out. I can download SQL Server 2008 Developer edition, I...
November 13, 2012 at 1:52 am
Yep, unfortunately I am in China at the moment for the next year or so, no chance of them shipping it here. Thats why I really need to download it...
November 13, 2012 at 1:11 am
Wow, I just read about Jen's problems as a woman in IT - no surprise that there aren't more woman! Awesome that you are still battling on Jen!
I have met...
January 6, 2010 at 11:08 pm
Hay,
To do this use dynamic SQL with a built in stored proc... to get the example you posted going:
DECLARE @SQL nvarchar(500)
DECLARE @test-2 varchar(20)
SELECT @test-2 = 'testtable'
SELECT...
July 24, 2006 at 2:05 am
Or you can use this that was posted on the site as an article a little while ago:
Select
'Table Name ' = B.name,
'Column name' = A.name,
'Column No' = colid,
'Type' = type_name (xusertype),
'Length' ...
July 11, 2006 at 5:18 pm
Thanks guys, have implemented Dr Larsson's solution, but I am still none the wiser as to why my original doesn't work! Must be a bug I say!
June 22, 2006 at 4:10 pm
Viewing 15 posts - 1 through 15 (of 20 total)