Viewing 15 posts - 3,811 through 3,825 (of 6,038 total)
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...
June 1, 2015 at 12:10 pm
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...
June 1, 2015 at 11:50 am
fliteskates (5/29/2015)
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...
June 1, 2015 at 10:47 am
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...
June 1, 2015 at 9:26 am
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/
June 1, 2015 at 9:17 am
dunn_Stephen (6/1/2015)
Why is Line 29 Ambiguous???
What is "Line 29", and what is the error message you're getting ?
June 1, 2015 at 9:10 am
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...
June 1, 2015 at 9:08 am
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...
June 1, 2015 at 7:49 am
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...
June 1, 2015 at 7:33 am
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...
May 29, 2015 at 11:47 am
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.
May 29, 2015 at 10:06 am
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,...
May 29, 2015 at 9:16 am
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...
May 29, 2015 at 7:39 am
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...
May 29, 2015 at 7:22 am
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...
May 28, 2015 at 9:00 am
Viewing 15 posts - 3,811 through 3,825 (of 6,038 total)