Forum Replies Created

Viewing 15 posts - 13,246 through 13,260 (of 15,381 total)

  • RE: Insert jpgs and file name into table

    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...

  • RE: Are the posted questions getting worse?

    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...

  • RE: Upload CSV Programatically from a web page to SQL Question

    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...

  • RE: Upload CSV Programatically from a web page to SQL Question

    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...

  • RE: Upload CSV Programatically from a web page to SQL Question

    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...

  • RE: Upload CSV Programatically from a web page to SQL Question

    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...

  • RE: Are the posted questions getting worse?

    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:-D

    Five! ???? :w00t:

    Only for significantly large values of 2. 😛

  • RE: Add Convert for UTC time

    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...

  • RE: Add Convert for UTC time

    Are you just trying to format the UTCOccurrenceDateTime column?

  • RE: unable to select the column

    llawws (1/11/2012)


    when i am using bellow query i am getting problem.

    select * from table --> no issue table result is showing.

    where as when i use the column it was showing...

  • RE: search second value from comma separated string

    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...

  • RE: query using time

    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...

  • RE: Is it possible to use where is Max like 2005?

    emre.celik00 (1/10/2012)


    Thanks for your reply.

    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...

  • RE: query using time

    bill.akin (1/10/2012)


    the following query

    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...

  • RE: Mutli Use Split String function Question

    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...

Viewing 15 posts - 13,246 through 13,260 (of 15,381 total)