Viewing 15 posts - 31 through 45 (of 65 total)
I'm using a "Transfer SQL Server Objects taks". These are the settings I have:
SourceConnection: ServerA
SourceceDatabase: Stage
DestinationConnection: ServerA
DestincationDatabase: TEST
DropObjectsFirst: False
IncludeExtendedProperties: True
CopyData: True
ExistingData: Append
CopySchema: True
UseCollation: True
IncludeDependentObjects: True
CopyAllTables: True
CopyAllViews: True
CopyIndexes: True
CopyTriggers: True
CopyFullTextIndexes:...
March 19, 2010 at 9:59 am
I know its been awhile, but do you remember what you did to fix this issue. I'm running into the same thing.
March 19, 2010 at 9:52 am
Thx everyone. Really appreciate all the help.
March 16, 2010 at 7:46 am
awesome, thanks very much! i'll give it a shot.
January 29, 2010 at 11:45 am
Thats great! Thanks for all support.
January 28, 2010 at 7:19 am
Insert into dbo.VerizonDetailsFinal ([From Number], [Usage Date], [ConnectTime], [endTime]) values ('2012593398','40172','11:54:35.0000000','11:55:29.0000000')
Insert into dbo.VerizonDetailsFinal ([From Number], [Usage Date], [ConnectTime], [endTime]) values ('2012593398','40172','11:55:34.0000000','11:56:28.0000000')
Insert into dbo.VerizonDetailsFinal ([From Number], [Usage Date], [ConnectTime], [endTime]) values...
January 27, 2010 at 1:22 pm
You are so Awesome! Lynn. Thank very much.
January 27, 2010 at 11:26 am
Thanks everyone, was able to get it working with set based statement. Had to loop through all the records.
January 27, 2010 at 10:57 am
00:13:00
00:01:00
00:03:00
00:09:00
00:01:00
January 27, 2010 at 10:56 am
its weird, when I run:
declare @ TimeVal varchar(16); -- Added space between @ and TimeVal to get code to post
set @TimeVal = '00.13.00';
select @TimeVal, cast(replace(@TimeVal,'.',':') as time)
declare @ TimeVal varchar(16);...
January 27, 2010 at 10:47 am
Viewing 15 posts - 31 through 45 (of 65 total)