Viewing 15 posts - 106 through 120 (of 151 total)
Just my 2 cents...
I would recommend ALWAYS using a stored procedure in a report. I even have a naming convention for stored procedures that do nothing but return data for...
July 14, 2008 at 7:42 am
Within SQL Server Business Intelligence Development Studio, under "Project", is a "SSIS Import and Export Wizard...". I would recommend you start there and see what it does (fairly easy to...
July 11, 2008 at 6:10 am
Jeff Moden (7/10/2008)
Ummm... correct me if I'm wrong, please... the code still presupposes that you manually maintain the sort order...
Yes, I am maintaining a sort order manually in this one....
July 11, 2008 at 5:44 am
Nice! So it will only "process" for the places where the character in that place is not a character, versus mine where it uses a case on every character.
But...
July 11, 2008 at 5:30 am
I am personally trying to get some practice with a tally table, so here is what I came up with:
-- tNumber starts at 1
DECLARE @InString NVARCHAR(MAX)
SET @InString = 'this is...
July 10, 2008 at 8:29 am
Just a quick thought...
Another solution, possibly more stable than a time delay, even if you cannot rename the file, is a time delay with a file-size check. If the file...
July 10, 2008 at 8:07 am
Can you clarify your question? Are you trying to keep the table from scrolling so that when the users scroll in the browser the entire report, header included, is scrolled...
July 10, 2008 at 7:46 am
Ah. Thanks Mark! Good catch, Jeff. The way I set up my quick table I didn't notice that.
Taking some time to play around with the hierarchy (taking the que...
July 10, 2008 at 7:06 am
Jeff Moden (7/9/2008)
MentalWhiteNoise (7/9/2008)
July 9, 2008 at 8:23 pm
Jeff, wether I use the Cross Apply or an Inner Join, the Execution Plan is identical, and the performance on the Cross Apply is better (~13400 "Wait time on server...
July 9, 2008 at 11:24 am
I am fairly new to the tally table... (I have used it in a couple of places modifying reference code) so I decided to play around with getting numbers from...
July 9, 2008 at 8:27 am
Not sure on performance, but just for fun, here is what I came up with using a tally table...
SELECT TestText,MAX(n.Number), SUBSTRING(TestText, MAX(n.Number)+1, LEN(TestText) - MAX(n.Number))
FROM (SELECT 'T5e3st003' AS 'TestText')...
July 9, 2008 at 7:57 am
What format is the source data? Is there a limit to the number of columns you will need to query? There are going to be several ways that you can...
July 9, 2008 at 7:44 am
You should be able to track depth easily with yoru CTE (if you are not already). Use this depth to append a precursor string... such as REPLICATE('-', Depth) + Label
July 9, 2008 at 7:37 am
dayananthan (7/7/2008)
You have an option called "Delay Validation". Set this property to True
Better yet, set it to an expression and reference a "Debug" variable. Then you can turn this delay...
July 9, 2008 at 7:28 am
Viewing 15 posts - 106 through 120 (of 151 total)