Viewing 15 posts - 13,411 through 13,425 (of 15,381 total)
No need to start a new thread. You already have several people helping. You might be able to do this directly from sql but it would take way more time....
December 1, 2011 at 2:16 pm
So are the multiple rows per file versions or are they additional segments? Given that it is already in the image datatype I think they are likely versions because the...
December 1, 2011 at 2:11 pm
And aostanley, excellent job posting your question with ddl, inserts and desired output. Doing that makes it so much easier for people to help. 😀
December 1, 2011 at 12:19 pm
If you care which one is "first" you will need to sort by more than just type. Ordering by type alone will not always get the same row for each...
December 1, 2011 at 12:17 pm
Glad that worked for you.
You want to use varbinary instead of image. The image datatype has been deprecated and will no longer be supported at some point in the future....
December 1, 2011 at 12:02 pm
I think you can just change your datatype in the database and leave your code as is. You are already referencing a binary type. I don't have any experience using...
December 1, 2011 at 10:37 am
Here are just a few articles and blog posts referencing reasons to use something other than guids.
http://www.sqlservercentral.com/articles/Miscellaneous/alookatguids/2497/%5B/url%5D
http://www.sqlservercentral.com/articles/Editorial/71378/%5B/url%5D
http://www.sqlservercentral.com/articles/Guids/75506/%5B/url%5D
These are just a few in no particular order (my apologies to anybody if...
December 1, 2011 at 10:26 am
From your description I think you must be in sql 2005? You say you have a column of type image so we are all assuming at least 2005. From the...
December 1, 2011 at 10:21 am
isuckatsql (12/1/2011)
Based on the above assumption, i have some fields in a candidate profile table, job title(dates...
December 1, 2011 at 9:59 am
frdrckmitchell7 (12/1/2011)
Thanks for everyone's input. I have sorted this one out.Kind regards
Glad you figured it out. Can you post your solution so others that stumble in here have an...
December 1, 2011 at 7:33 am
eankorins (11/30/2011)
So here is what...
November 30, 2011 at 3:26 pm
It is a pretty drastic departure from standard thinking. 😉 Basically all you would need to change is the query for your report.
Here is an example to show you how...
November 30, 2011 at 9:18 am
michael.french 172 (11/30/2011)
Sean Lange (11/29/2011)
November 30, 2011 at 9:03 am
I tend to be very sensitive about adding columns to the output. As a web developer I tend to bind datagrids to stored proc results and let the grid build...
November 30, 2011 at 8:09 am
You will need to split your inbound parameter. Take a look at the link in my signature about splitting strings. It should accomplish exactly what you are looking for.
November 30, 2011 at 8:04 am
Viewing 15 posts - 13,411 through 13,425 (of 15,381 total)