Viewing 15 posts - 46 through 60 (of 207 total)
Probably late Q2 but that is just my guess.
April 15, 2008 at 9:27 am
I wasn't going to post but decided after reading the "everyone wants mid level" note to share a story.
I was laid off of a job and had minimal TSQL expereience....
March 2, 2008 at 9:21 am
When you get the pop up are you getting the expected file name? (The one before the move?)
In your "shouldloop" function, is it getting called properly?
Rather than this:
for each fil...
December 11, 2007 at 6:25 am
Can you post some code samples for us?
December 10, 2007 at 2:20 pm
There is. Look up HTTP Endpoints in Books Online. I beleive that will give you what you need.
October 15, 2007 at 1:20 pm
I agree with Tommy. Run an Update Statistics. I had a similar problem (granted it was SQL 2000) some time back and it boiled down to updating statistics and everything...
October 15, 2007 at 7:07 am
If you are working with recruiters, also let them know the exepericne you have had there and let this companies management know you are telling others of the situation there....
September 20, 2007 at 3:41 am
Still another way to do this if you are using SQL 2005 is to utilize the EXCEPT operator.
DECLARE @TblNew TABLE(Column1 CHAR(1),Column2 TINYINT, Column3 VARCHAR(20))
DECLARE @TblOld TABLE(Column1 CHAR(1),Column2 TINYINT, Column3 VARCHAR(20))
INSERT...
September 19, 2007 at 1:43 pm
I'll beleive the release date when I actually see it come to pass. I don't think I've seen MSFT hit an initial release date yet =) I could be wrong.
July 11, 2007 at 11:44 am
I'd like to see a follow-up article on this regarding security and when one would use HTTP to connect vs TCP/IP over port x. I am also curious as to...
May 1, 2007 at 7:06 am
Vincent,
With regards to the 3 types of SCD, I don't see another alternative to handling updates in a table. Either you 1) Replace the data, 2) Version the data in...
April 13, 2007 at 7:51 am
Here you are setting the value of @RowID to the value of the RowID column. The Value of the RowID column is being set to @RowID + 1
SET @RowID=0 --...
February 26, 2007 at 9:10 am
RSS is a great implementation of data exchange utilizing an XML Schema. That said, I think that external data exchange is the best use of XML with Configuration a close...
February 23, 2007 at 11:22 am
After examining the procedure sp_execresultset, I decided to write a cleaner port.
USE master
GO
CREATE PROCEDURE sp_execresultset
@SQLToGetRecordSet nvarchar(max)
,@DatabaseToExecuteCodeIn sysname
,@debug bit = 0
AS
February 20, 2007 at 12:52 pm
You should run the activex tasks first, then the executesql tasks. Generally, what I like to do to keep things organized, is to have an activex task for setting the...
January 26, 2007 at 11:17 am
Viewing 15 posts - 46 through 60 (of 207 total)