Viewing 15 posts - 211 through 225 (of 381 total)
If Mike's solution doesn't work, try (where I put square brackets around the T-SQL key word Timestamp):
strINSERT = "INSERT INTO eCallByCallStat " & _
"(Timestamp,CallEvent,CallEventName,CallId,TelsetLoginID,AssociateData,Destination,VentData,Source,Time,SiteID,Site) " & _
"VALUES ...
January 23, 2007 at 6:00 am
You probably did this, but just in case: you ran the entire statement in 2 in Query Analyzer and it ran?
January 22, 2007 at 3:58 am
I'm stumped. Hopefully someone else can help you.
January 20, 2007 at 9:29 am
I'm stumped. Hopefully someone else can help you.
January 20, 2007 at 9:29 am
Can I always split on the semicolon? What is the maximum number of semicolons in a field? Is this something that you want to do once and then not again...
January 19, 2007 at 4:16 pm
I can't recall if I have heard this officially, but this is a bug!
First, just type in your SQL just like you did.
Then save the executesql task (if there are...
January 19, 2007 at 1:38 pm
Let me get this straight. You ran the dts package with an executeSQL statement that used a global variable. When you saw the statement in the profiler, the statement completed...
January 19, 2007 at 6:31 am
I created a very simple package with two connections: one sql server, one text destination. I then created a transformation from the sql to the text. I set the source...
January 19, 2007 at 6:24 am
Run SQL Profiler while running the DTS package and look for the SQL statement from the ExecuteSQL task. Does it look like it has the right parameter values?
January 18, 2007 at 6:14 am
You have several moving parts here. I don't think that I can answer this in the few moments that we have to respond to posts.
January 17, 2007 at 6:53 am
UPDATE YourTable
SET YourFieldName = REPLACE(convert(varchar(8000), YourFieldName), 'c:\', 'h:\')
January 17, 2007 at 6:52 am
Are you actually moving the files? How do you plan to move the files? I personally would use Access or VB to do this.
You need to read the database table...
January 17, 2007 at 6:08 am
I'm really not clear what you are trying to do, so it is very difficult to help you.
DTS can do a lot! I've seen it do things that could be...
January 17, 2007 at 5:49 am
I think that you could use an instead of trigger like what you have. I will let you be the guinea pig.
After your trigger:
insert into Table_to_Update
select @pk, Last_Name,...
January 16, 2007 at 12:47 pm
Viewing 15 posts - 211 through 225 (of 381 total)