Viewing 15 posts - 5,296 through 5,310 (of 9,643 total)
I'm not sure I understand your requirements. Can you include some data and expected results? If I enter April 22, 2009 (Wednesday) do you want the week to...
April 22, 2009 at 6:41 am
Sounds like you need to get Kerberos setup for the double-hop. Check out this article[/url] by K. Brian Kelley. Here is a good blog post by Kendal Van...
April 22, 2009 at 6:28 am
krombit,
I have seen this error. I get this error when I run the script in a database where the compatibility level is set to something other than SQL Server...
April 22, 2009 at 6:03 am
Nice one Wesley. Certainly truncate will be fast. Of course any indexes will affect the solutions as well.
April 21, 2009 at 7:43 pm
Grant Fritchey (4/21/2009)
The other key is to hook up with as many vendor parties as you possibly can. Then you eat for free.
This is definitely part of the plan. ...
April 21, 2009 at 4:06 pm
I'm likely paying although my company may chip in some. I'm not counting on it though.
April 21, 2009 at 2:08 pm
Still on the Summit. Where has everyone stayed when attending? How do you get around? This will be my first Summit and first trip to Seattle.
April 21, 2009 at 1:37 pm
Can you post some DDL and sample data as suggested in the links in my signature line?
Here's a weak attempt to help:
;With cteDupes AS
(
...
April 21, 2009 at 12:56 pm
Ah yes, the hidden code of triggers. I would recommend re-writing the trigger to handle a set based delete properly.
April 21, 2009 at 12:47 pm
Please post the connection string you are using. Are you doing a desktop application or a web application?
Check out http://www.connectionstrings.com/ for connection string syntax and arguments.
April 21, 2009 at 12:24 pm
I don't see anything wrong with the delete statement. Is there anything else in your batch?
April 21, 2009 at 12:14 pm
Alex,
I also want to comment that, while I provided an alternate method, I do appreciate the article and the method it presents. As always "It depends" is the answer.
April 21, 2009 at 8:31 am
I would update the rows that exist and insert the ones that don't. Like this:
UPDATE Archive
SET COLUMN_list = T.Column_List
FROM
...
April 21, 2009 at 7:53 am
I would think you would want to filter that in your SQL Statement so you are not bring all the data across the wire and then filtering it. I...
April 21, 2009 at 7:10 am
Viewing 15 posts - 5,296 through 5,310 (of 9,643 total)