Viewing 15 posts - 211 through 225 (of 299 total)
This is a bit of a guess but if you are creating the table in Excell it will be using the Jet driver, It might not understand varchar! Try
CREATE...
February 14, 2006 at 9:37 am
Hi Jose - tell us you blocked 1433
February 14, 2006 at 9:09 am
When I can't find the error it's usually because I'm looking in the wrong place.
Is 'GL_DISTRIBUTION' owned by other than dbo?
Does it copy any objects?
Is it a dependant object and...
February 13, 2006 at 8:17 am
Sorry if I was not clear - does the account that the SQL Agent runs under have permissions. Right mouse agent in EM -> properties -> general tab?
February 10, 2006 at 7:31 am
Hi - anything in the windows event log? If you can run it interactively you can double click on the error messsage for more info.
You can switch on package logging...
February 10, 2006 at 3:38 am
What about
UPDATE tblBlah
SET MyField = LEFT(LTRIM(MyField),3) + '.' + SUBSTRING(LTRIM(MyField),4,6)
I would run it as a select first to see if it gives you what you want.
February 9, 2006 at 8:12 am
Yes - you will need to define anything other than the actual columns and their data type.
If you have any constraints etc they will not be copied. It does copy Identity...
February 9, 2006 at 7:58 am
You could try EXEC master..xp_cmdshell '< some dos command>'
February 9, 2006 at 7:35 am
If you want to quickly make an empty table the same 'shape'' as an existing table you can do
SELECT TOP 0 tblMyTable.*
INTO tblMyNewTable
FROM tblMyTable
This will give you the right...
February 9, 2006 at 7:32 am
Possibly the upgrade removed some tables (or other objects). If the copy was set up before something was removed I guess it would fail. If the job is a 'Copy...
February 9, 2006 at 7:16 am
Your idea of active dates is pretty much what BiTemporal is about. Try this link http://www.cs.arizona.edu/people/rts
February 8, 2006 at 6:58 am
You could try putting a transformation from any field into Claimdata.LagCategory then choose activex script and put a fixed literal in it equal to the length of the longest value...
February 8, 2006 at 6:54 am
There is a nice solution here
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=145&messageid=252203#bm252418
The post from Rick Lowry
February 8, 2006 at 5:32 am
Argh * 2
I just lost my post and you have a fairly horrid problem - some options that sring to mind are
1. If Buick is removed code it as...
February 8, 2006 at 5:10 am
Viewing 15 posts - 211 through 225 (of 299 total)