Forum Replies Created

Viewing 15 posts - 361 through 375 (of 533 total)

  • RE: Full Text Search intermittently produce inconsistent results

    I've had zero problems.

    If you post the query you're using it's possible someone would be able to see where something is amiss.

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: NT AUTHORITY\IUSR user issue

    Generally I think it's better to create a specific account that you want to use for your web application to access your SQL Server rather than using the built-in machine...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Query Help

    The request isn't altogether clear, but the way I'm reading it is that you're looking for the people who went to the last event as their first event. If...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Today's baseball game (or importing data).

    Randy100 (6/4/2010)


    "Batting 2nd": An application that strips off these attachments and saves the files in a specified directory.

    Use this same application to fire off the SSIS package that will do...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How can i get the most freequently dialed numbers

    Not sure exactly how you want to do groupings and the data you provided didn't exactly match up with the results but hopefully this will give you an idea of...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Please help with the code

    I wish they had the Internets back when I had homework assignments!

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: grant permissions

    Please do not cross-post the same questions. This thread can be found here.

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: GIVE WRITE ACCESS TO A SERVER

    So you want to grant NTFS permissions via T-SQL?

    Are these homework questions?

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How to combine records in same table (Flatten a table) ?

    Put together table definitions (as I have done above) for all of the relevant source tables. Then write out the script to insert a meaningful amount of data into...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Execution Plan Question

    hawg (6/3/2010)


    I would love to add an index but this is a third-party database so it's not going to happen - at least not by me. The vendor would...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Execution Plan Question

    hawg (6/3/2010)


    There is not any kind of index on this date, or any other helpful column ...

    You need to add the date column to an index. You won't...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: How to combine records in same table (Flatten a table) ?

    In the future it helps to put together table definitions and insert statements so people can more easily help you:

    create table #table2

    (

    CustomerNum int,

    PostDate datetime,

    OfferAccepted char(1),

    OfferName1 varchar(10),

    OfferName2 varchar(10),

    OfferName3 varchar(10)

    )

    insert into #table2

    select...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Trying to optimize a WHERE clause

    declare @ByName varchar(25)

    declare @BySpecID int

    declare @ByOfficeID int

    declare @ByCity varchar(25)

    declare @ByCounty varchar(11)

    set @BySpecID = 21

    set @ByName = 'r'

    set @ByCounty = 'Albany'

    select *

    from #NameList

    where [Name] like '%' + @ByName + '%'

    and [City]...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: top count row

    Am I completely crazy or did you ask pretty much the exact same question in this thread, which is complete with an answer that went completely unrecognized?

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

  • RE: Is it kind of workflow/audit scenario?

    Personally this is something I would do on the application side. You would need a separate set of tables to hold the data you need for your application to...

    └> bt



    Forum Etiquette: How to post data/code on a forum to get the best help[/url]

Viewing 15 posts - 361 through 375 (of 533 total)