Viewing 15 posts - 13,246 through 13,260 (of 15,381 total)
Do you have to store the images in the database? If you are not familiar with it FILESTREAM may be a better alternative. Take a look at BOL here. Depending...
January 13, 2012 at 10:15 pm
I have to say this whole situation has left me feeling extremely reluctant to post on just about anything for fear that I come across as "one of those", or...
January 13, 2012 at 10:06 pm
I don't think you need to go to all the trouble of an SSIS package. Just make data connection direct to your uploaded csv (assuming is is Excel) or just...
January 13, 2012 at 9:01 am
Just saw the edit to your OP. I don't know what the best search phrases would be either, or even how to explain this process in 2-3 words. I am...
January 12, 2012 at 2:09 pm
That certainly removes several of the "what ifs". I think I might approach it as a multi step (page) process. Have your upload page, this page would have your html...
January 12, 2012 at 2:06 pm
Not sure which web technology you are using but this is going to be pretty challenging. Probably more difficult than it seems like it should be.
The challenge is that...
January 12, 2012 at 1:56 pm
David Burrows (1/12/2012)
SQLRNNR (1/12/2012)
I have a four letter word in mind for him in regards to his 2+2 question:-DFive! ???? :w00t:
Only for significantly large values of 2. 😛
January 12, 2012 at 10:06 am
Well you say you want to convert but then you want to make it central time. I am a little confused.
Convert is used for presentation (which really belongs in the...
January 11, 2012 at 9:22 am
Are you just trying to format the UTCOccurrenceDateTime column?
January 11, 2012 at 8:59 am
llawws (1/11/2012)
select * from table --> no issue table result is showing.
where as when i use the column it was showing...
January 11, 2012 at 7:55 am
latitiacasta (1/10/2012)
Sean: if you are talking about function then its not possible in my case.i want through query only
If you have to do this in a single query you are...
January 10, 2012 at 9:20 pm
Can you post ddl (create table scripts), sample data (insert statements) and desired output? It is pretty tough to figure out what your data and queries look like.
Take a look...
January 10, 2012 at 3:02 pm
emre.celik00 (1/10/2012)
I need to use with join.
Can I find Max value in Where clause?
or
like this
Left outer join table1 t on t.xyz= ........ and t.xyz is...
January 10, 2012 at 2:46 pm
bill.akin (1/10/2012)
select member_number, date, time_in, time_out from member_time where time_out <='9:30 am' gives the following data
member_numberdatetime_intime_out
25501/9/20127:55:31 AM1:08:15 PM
25631/9/20127:55:59 AM4:30:00 PM
7551/9/20127:56:31 AM8:00:00 PM
22291/9/20128:00:00 AM9:00:00 AM
12651/9/20128:26:25 AM12:06:15 PM
24791/9/20128:33:10 AM12:02:37...
January 10, 2012 at 2:40 pm
This might be a start...
declare @string varchar(100) = '20110101,glp,100.0,50.0,25.6 hgl,29.0,28.0 jlp, 30.0'
set @string = REPLACE(@string, ', ', ',')
select *
into #Results
from dbo.DelimitedSplit8K(@string, ' ')
--validate the initial load
--select * from #Results
declare...
January 10, 2012 at 12:51 pm
Viewing 15 posts - 13,246 through 13,260 (of 15,381 total)