Hi Everyone,
This should be easy....but...
I have a table called Page that holds our .tif files and looks something like this.
Document_ID =
CD659B99-6A80-48E1-98CC-7710D36CDBF3
B1960F5F-FDB1-42F8-8259-419D0F83A621
File_Name =
B77E7A74-CA7A-46B4-BD41-F57C1980A119.tif
FF1EE28F-6B04-485C-B744-AF5C756C3B19.tif
What I need to do is Update the File_Name Field to a .jpg. This table has millions of rows in it. So what I want to do and of course this errors out is to have something like this.
Update Page
Set Right(File_Name,3) = 'jpg'
From Page
Any Suggestions?
Thanks for all your help!
This should be easy....but...
I have a table called Page that holds our .tif files and looks something like this.
Document_ID =
CD659B99-6A80-48E1-98CC-7710D36CDBF3
B1960F5F-FDB1-42F8-8259-419D0F83A621
File_Name =
B77E7A74-CA7A-46B4-BD41-F57C1980A119.tif
FF1EE28F-6B04-485C-B744-AF5C756C3B19.tif
What I need to do is Update the File_Name Field to a .jpg. This table has millions of rows in it. So what I want to do and of course this errors out is to have something like this.
Update Page
Set Right(File_Name,3) = 'jpg'
From Page
Any Suggestions?
Thanks for all your help!