Viewing 15 posts - 2,731 through 2,745 (of 3,489 total)
Hard to believe you don't have alerts set up so that this doesn't happen. Scary. Maybe you need to update your resume....
Maybe read this: http://www.sqlserver-expert.com/2012/05/manage-database-files-and-file-groups.html
See the section that...
December 30, 2014 at 12:36 pm
I was being serious when I said that's how you learn. Try, test, fail, read, try... if you aren't willing to do that, then pay someone to help...
December 30, 2014 at 11:11 am
That's how you learn. Try, fail, modify... hit F1, read Books Online, try again.
DECLARE @NewPath VARCHAR(100) = 'C:\Dir\Subdir\File.xml';
DECLARE @sqlstring VARCHAR(200) = 'SELECT * FROM OPENROWSET(BULK ' + '''strFileName'', SINGLE_CLOB)';
SET...
December 29, 2014 at 8:17 pm
Can you use Conditional Split to divide the dataset -- so that you get the match/no match and then handle there?
Katie and Emil are really good at this kind of...
December 29, 2014 at 3:11 pm
So create a column in your base query that grabs the first three characters of the string, and then base your summary query on it.
December 29, 2014 at 1:31 am
The video on YouTube is handy too... just so you can watch someone do it.
December 28, 2014 at 11:34 pm
There's not much more to say that hasn't already been said. I did Access for a long time (and lots of VBA too), and moving to SQL Server takes...
December 24, 2014 at 4:49 pm
The only thing I can think of is that you have another object named "Report1" in the database. Otherwise it should work.
December 24, 2014 at 9:55 am
One way might be to read the names of all the files in the directory into a variable one at a time, then parse off the date into a date...
December 23, 2014 at 5:13 pm
Not sure I understand. Do you mean you don't want the chart to print, but still be visible on the screen?
Looks like this article should give you at least...
December 22, 2014 at 8:41 pm
Post what you tried.
And while you're at it , could you explain how the logic works to generate what you're describing? I have no clue how you got from your...
December 22, 2014 at 7:38 pm
You can probably do that following the examples in Jeff Moden's article. http://www.sqlservercentral.com/articles/T-SQL/63681/
I would be nice and work on it, but it's almost 2 AM here... start there and if...
December 22, 2014 at 12:43 am
Do you have any control over the underlying database? The fact that you have a bunch of data coming from different tables makes me wonder if if they underlying...
December 20, 2014 at 11:25 pm
Thanks for posting the data, but if you could post it in consumable format, then people could help you a lot easier - and you would get tested solutions. ...
December 20, 2014 at 4:54 pm
Super cool!! That should fix it. Definitely a solution I will have to keep in my bag of tricks.
Thanks!
Pieter
December 18, 2014 at 6:37 pm
Viewing 15 posts - 2,731 through 2,745 (of 3,489 total)