Viewing 15 posts - 2,146 through 2,160 (of 7,187 total)
I interpret it as meaning the path to the Customer_1.csv file, something like "c:\MyCSVs". There's a section on page 5 Downloading the example code. Can you find the...
December 2, 2016 at 2:03 am
Ah yes, this is a classic gaps and islands problem. Have a read through this, and see if it helps.
John
December 2, 2016 at 1:57 am
I'm not sure that's a legal operation. From Books Online (emphasis mine):
The OUTPUT clause is not supported in the following statements:
* DML statements that reference local partitioned views, distributed...
December 2, 2016 at 1:46 am
Pedro
Just multiply speed in KB/s by time in seconds to get the number of KB you can transfer in that time.
John
December 1, 2016 at 9:59 am
If your maintenance plan only backs up a single database, and is appropriately named with the name of the database, it should be fairly easy. Sysjobhistory will tell you...
December 1, 2016 at 9:52 am
So, if you're interested in RunLogID 5, you want all rows that have the same RootRunLogID (which is 1 for RunLogID 5)? Try this:DECLARE @runLogID INT = 5;
WITH cte_RunLogandChildren...
December 1, 2016 at 9:42 am
Yes, you can add a second instance. Install it the same way you did the first (although bear in mind there may be reboots and therefore you'll need to...
December 1, 2016 at 9:06 am
If you're looking for the new value, use the Inserted virtual table, as you have done. For the old value, use the Deleted virtual table.
John
December 1, 2016 at 8:02 am
WebTechie (12/1/2016)
Hello,I've only been here a week. However, no pattern yet. Update script. Insert rows. They come in from about 6 developers.
Thanks.
Tony
Tony
If developers are involved on...
December 1, 2016 at 7:46 am
Tony
If you're running so many ad hoc queries, that points to something missing in the application. Is there a pattern to the kind of modifications that you're being asked...
December 1, 2016 at 7:20 am
Steve
Great job on posting tables and sample data! Is this what you're looking for?WITH cte_RunLogandChildren AS
(
-- Anchor
SELECT rl.RunLogID
,rl.LogLabel
,rl.ParentRunLogID
,rl.RunLogID AS RootRunLogID
FROM dbo.RunLog rl
WHERE rl.ParentRunLogID...
December 1, 2016 at 5:16 am
Grant Fritchey (11/30/2016)
November 30, 2016 at 7:48 am
Grant Fritchey (11/30/2016)
I don't see any protection against SQL injection with this approach. I'd be a bit cautious about it. You don't want to meet Bobby Tables[/url].
There's no user input...
November 30, 2016 at 7:09 am
Yes, in most cases replacing loops with set-based code is a good thing. There's nothing wrong with your code as written. You can also write it something like...
November 30, 2016 at 5:53 am
Your original request was for comments from those who have encountered this problem before. I haven't, but I'd say all you need to do is make any necessary changes...
November 30, 2016 at 4:37 am
Viewing 15 posts - 2,146 through 2,160 (of 7,187 total)