Forum Replies Created

Viewing 15 posts - 4,891 through 4,905 (of 5,111 total)

  • RE: t-sql 2012 trigger

    John Mitchell-245523 (10/5/2016)


    You haven't given any examples of exactly what you're trying to prevent, but from your description, it sounds as if you could do all this (except the e-mail)...

  • RE: t-sql 2012 trigger

    I'm going to admit here, triggers are not my forté. I rarely use them as our main database is third party, and repopulated every night (so we have no need...

  • RE: How to force column explicitly to string type before we export to excel

    Is SSIS therefore the right choice to export your data? it almost sounds like you're just simply exporting data out of a SQL table.

    Would it not be easier to export...

  • RE: ssis and email

    Phil Parkin (10/4/2016)


    I send e-mails from SSIS by calling a proc which also does the HTML formatting.

    I do the same when in SSIS. I would actually prefer, at least in...

  • RE: ssis and email

    This doesn't really sound like an SSIS task, no. Generally SSIS is used for ETL, and what you're doing here is simply checking the data and notifying someone via email....

  • RE: count every hour per day

    True, I was somewhat lazy and didn't include 0 values.

  • RE: count every hour per day

    This should work, however, see my below point:

    CREATE TABLE #Order (OrderID INT IDENTITY (1,1),

    ...

  • RE: Resolve Data using Pivot

    What are you aiming your data to look like? We then know what you're trying to make from the data you have.

    Also, it looks like your sample data contains a...

  • RE: How to average a date column?

    komal145 (9/29/2016)


    can you reply with your iff condition?

    This is a 6 year old topic you've just "necro'd", it's unlikely that they're going to still have it now.

    You'd be better off...

  • RE: Routinely appending to a table from a view

    Without included the DDL of your table (Report_Run_Date does exist in TABLE1, right?) and view this is a little hard, however, your query looks wrong anyway.

    This would likely work...

  • RE: SSRS dynamic page orientation

    Although changing the orientation might be possible by simply using a page count, I don't think it's going to provide you with what you want. The issue being is that...

  • RE: Loading Multiple csv or xlsx Files into Table

    I know you've said that the data quality is poor, but what does converting the files from csv to xlsx actually achiev,e(and how are you doing so?

    Just loading a csv...

  • RE: SSMS 2016 Losing/Ignoring Settings

    Phil Parkin (9/27/2016)


    Beatrix Kiddo (9/27/2016)


    I've lost a few settings recently but it coincided with my installing Visual Studio, and there seems to be a known issue with that.

    As SSMS now...

  • RE: Getting the last weekday date for report header

    You can format a text box by right clicking it and selecting Textbox properties. Then in the format/text pane (I can't remember what it called, and i don't have SSRS...

  • RE: Exception has been thrown by the target of an invocation. SSIS Package. Integration Service Catalog

    Most likely Kerboros is enabled on your server (you can check by running the below SQL, which should return "KERBOROS"), however, that the double hop isn't working.SELECT c.auth_scheme FROM sys.dm_exec_connections...

Viewing 15 posts - 4,891 through 4,905 (of 5,111 total)