Viewing 15 posts - 11,026 through 11,040 (of 13,877 total)
OK - but I asked about the column names and I'm not sure that you've tried what I suggested.
In your SQL for the extraction from the view, try aliasing the...
November 22, 2011 at 2:59 pm
david.ostrander (11/22/2011)
I wish it was that. I tried to remove the spaces with no such luck.This is an image from the table that the view reads from (attached)
That's not...
November 22, 2011 at 2:23 pm
Could it be a problem with spaces in the column names?
November 22, 2011 at 2:13 pm
I had to do something very similar recently. Check this thread for a fast T-SQL solution (and many other interesting suggestions!)
November 22, 2011 at 10:30 am
Hi Jason
This stuff is much easier to read if you use code="sql" tags (+ thanks to SQL Prompt for reformatting):
declare @ServerName as varchar(60)
set @servername = 'yourservernamehere'
create table TEMPDB.dbo.tFreeSpace
(
...
November 21, 2011 at 5:09 am
In the absence of a question in your post, it seems that the import/export (or should that be export/import) method is the one to use.
November 18, 2011 at 5:03 am
I think Excel can handle only 256 columns.
True for 2003. 2007 onwards allow 16,384 columns, requiring a truly microscopic font in SSRS 😛
November 18, 2011 at 3:35 am
Good answer, but note that you have answered a question which is more than a year old 🙂
November 17, 2011 at 3:23 am
What do you mean by 'remote'? Outside of your LAN?
November 16, 2011 at 1:32 pm
What about FROM, JOIN & TRAN? [BigGrin]
And, especially around the middle of the afternoon, or when you accidentally pressed F5 while connected to production, DUMP.
November 16, 2011 at 9:05 am
I'm still a little puzzled.
I create a new Excel Workbook from scratch.
I import the Pivot Tables into 7 different sheets and the size grows to 116MB even though I deleted...
November 15, 2011 at 7:47 am
Welsh Corgi (11/7/2011)
The macro listed below will reset the used cell ranges and should reduce the File Size.
I can't...
November 15, 2011 at 6:59 am
Perhaps this thread is of interest.
November 15, 2011 at 3:16 am
Script component is what you mean, I think.
Well done on taking the time to find a solution to your problem.
I still have concerns over the potential performance of your...
November 15, 2011 at 2:06 am
Don't think so. But you can use a combination of SUBSTRING and RIGHT to achieve the same thing - something like this (untested):
UPPER(SUBSTRING(@FileName,1,11))=="NEWPRODUCTS" && UPPER(RIGHT(@FileName,3))=="TXT"
November 14, 2011 at 2:05 pm
Viewing 15 posts - 11,026 through 11,040 (of 13,877 total)