Viewing 15 posts - 1 through 15 (of 25 total)
Yep.
I finally resolved the same issue with my [varchar(50)] when I took out the square brackets.. That is when I realized that the square brackets should have...
April 20, 2018 at 8:26 am
None of you people have identified the issue. The problem is that SQL server is returning an error "Cannot find data type varchar(50)."
I am getting the...
April 18, 2018 at 7:03 am
Whenever I sign onto to a development database to run DDL Scripts I not only put a Use statement in my script but I also use the drop down to...
November 15, 2013 at 7:13 am
I've always have any login with sys admin rights default to master, but any login with only database level rights defaults to their database.
I do not want...
November 14, 2013 at 1:19 pm
Turns out if your rdl has parameters in it you will see only a blank page in your reportviewer page. When you view source then you will a see...
September 16, 2013 at 5:54 pm
@ssc-Enthusiast Please read the original post.
For anyone reading this thread. Instructions provided for VS 2005 do not work in VS 2010 or 2012. This converted RDL causes...
August 28, 2013 at 12:59 pm
In our type of company it is really hard to implement meritocracy fairly. The reasoon for this is not because of the individuals but because each individual works for...
June 14, 2013 at 7:42 am
Wow. Many issues and comments.
One issue concerning asking applicant how to resolve a situation. That's how I got my first two jobs in the field. In each...
April 29, 2013 at 10:10 am
Concerning your remark from July 2008 about CS degreed folks having a better grasp of DB theory.
In my experience that has not been necessarily the case. Even...
April 11, 2013 at 6:14 am
Nice article. Very informative.
Interestingly enough, I just found out a couple of months ago in reading the articles on set-based programming versus procedural programming on Code Project
August 1, 2012 at 8:08 am
Or you could do
Select Distinct ABuyers.CustomerID from
(Select CustomerID FROM #Purchase WHERE ProductCode = 'A') ABuyers
JOIN
(Select CustomerID FROM #Purchase WHERE ProductCode = 'B') BBuyers
ON ABuyers.CustomerID = BBuyers.CustomerID
LEFT JOIN...
March 29, 2012 at 12:16 pm
In the development environment in which I am working, We have three company's doing parallel development on web apps (modules) for one web site. While in many cases these...
March 19, 2012 at 7:12 am
Yeah. Same here. Who woulddov thunk it !?!
:crazy:
November 16, 2011 at 1:49 pm
Grant create table to username
Grant alter to username
September 28, 2011 at 2:22 pm
George, in the original post dbajunior said "I uncheck db_owner, then click OK." Well in my version of SQL Server 2008, the login mapped to dbo is not listed...
September 21, 2011 at 2:20 pm
Viewing 15 posts - 1 through 15 (of 25 total)