Viewing 14 posts - 1 through 14 (of 14 total)
That is why I posted the project to github: https://github.com/ewahner/SQL
November 28, 2014 at 8:22 am
I have pushed my project to git. Please try the link below.
November 28, 2014 at 1:38 am
I think you confused my point with using a PIVOT vs dynamic PIVOT. When I said you have no choice, I was referring to doing a dynamic...
December 6, 2012 at 9:09 am
vopipari (12/6/2012)
December 6, 2012 at 9:05 am
I don't see why not as long as your list is either based upon static information or populated from the same connection. Though I imagine if the...
December 6, 2012 at 7:41 am
I would agree when you are using known and predictable values like a set of dates or even dates that haven't occurred, creating a PIVOT in SQL is quite simple....
December 6, 2012 at 7:38 am
FYI SSC-Enthusiast is just a Forum Tag...not his/her handle.
August 31, 2010 at 5:10 am
Not only does this methodology almost always lead to poor performance in whatever query you are writing be it an Index Scan or Table Scan, this methodology breaks some of...
August 31, 2010 at 5:07 am
There are still other ways that can both secure the environment as well as allow for existing applications to run as originally designed.
The real problem here is that...
February 2, 2008 at 9:36 am
I don't think that you need to track this kind of behavior. There are many ways to prevent developers from having access to production. As was stated earlier...
January 23, 2008 at 5:56 am
As I start to remember more and more about this "General Network Error", I now remember that this is just the last error in the error chain. We too went...
August 16, 2007 at 8:24 am
I cannot remember exactly all of the details, but we did used to get this error quite frequently, though it was not in a DTS, but just in some applications...
August 14, 2007 at 9:07 am
Well the best way would be to first create some stored procedures like:
Add a customer
create procedure dbo.spAddCustomer
@fName varchar(30),
@lName varchar(30),
@address varchar(60),
@city varchar(60),
@state varchar(2),
@zip varchar(14),
@path varchar(255)
as
begin
...
March 23, 2007 at 4:53 am
Viewing 14 posts - 1 through 14 (of 14 total)