Forum Replies Created

Viewing 15 posts - 3,811 through 3,825 (of 6,038 total)

  • RE: Excel frontend, SQL Server backend, triggers on views

    I can't entirely digest all what you've said above. But taking a step back, here is what I'd propose:

    Have the raw daily transactions from the CRM imported into an Excel...

  • RE: How to select columns that have some values only?

    SQL doesn't provide for conditionally returning columns. However, you can have a computed column that contains values from multiple columns appended together. For example, you can return your events as...

  • RE: Trying to learn SQL - Advice

    fliteskates (5/29/2015)


    Hey all,

    I am trying to learn how to use SQL and I have downloaded MSSQL Server 2014 Express. I am a complete beginner with little experience.

    I just downloaded and...

  • RE: Your Job

    GoofyGuy (6/1/2015)


    If that's a requirement, but unless you're an ISV providing a solution that is installed at the client's site, then there is no compelling business reason to design an...

  • RE: How to recognize and start a job if another job step is succesful?

    You can query the job history from msdb.dbo.sysjobhistory. Here is a link to an article that describes in more detail.

    http://www.mssqltips.com/sqlservertip/2850/querying-sql-server-agent-job-history-data/

  • RE: DBO is Ambiguous

    dunn_Stephen (6/1/2015)


    Why is Line 29 Ambiguous???

    What is "Line 29", and what is the error message you're getting ?

  • RE: Your Job

    GoofyGuy (6/1/2015)


    The DevOps movement is ... bringing automation, scripting, and repeatability to both software development and operational deployment.

    I'm curious if/how the 'repeatability' design philosophy includes being able to swop...

  • RE: Search IP Ranges and exclude

    I'm not sure what you mean by "removing" addresses from a "list". However, the following example assumes your need is to delete rows from a table where IPAddress is contained...

  • RE: Your Job

    That's a big part of why I love being a database developer; I rarely get mired in the muck of "why does the code work on X machine but not...

  • RE: Increase Update Speed

    You mentioned above that your update is running within 45 seconds. It's unclear why this would be unacceptable. If you are updating this table multiple times per day, then you...

  • RE: The Hidden Patterns in Data

    When it comes to politics, I think they first draw the pie chart to make a point, and then they twist the data to fit the chart.

  • RE: How can I restore a destroyed .mdb ?

    Before attempting to revover data from a damaged .mdb file, consider that you may still have the option of recoving a previous version of the file intact. From Windows Explorer,...

  • RE: Generating Dates at Runtime

    The following will easily give you what you want, without resorting to a loop. It basically just applies row_number() across a resultset to get a sequential set of numbers, multiplying...

  • RE: Statistical Analysis

    Not just for data scientists, basic statistical analysis can also be incorporated into a database at the operational level. For a dashboard application that monitors ETL processes, I leverage the...

  • RE: INSERT INTO not inserting enough rows

    Confirm that both tests, the straight select and then the insert / select, are performed in the same SSMS query window, using the same session and default session settings. Settings...

Viewing 15 posts - 3,811 through 3,825 (of 6,038 total)