Viewing 15 posts - 1 through 15 (of 17 total)
In this day and age of businesses, anything that gets people exposure simply to the fact that things are done differently in different countries is a bonus. As someone who...
September 13, 2011 at 3:42 pm
Great Editorial and a fantastic point.
I am a very hands on Systems Architect and I believe that in every single way it is the developers job to make the...
April 14, 2008 at 11:21 pm
That is the lamest excuse from a company I have ever heard.
People to this day are buying SQL 2005 and Microsoft to this day are patching bugs. When I want...
February 20, 2008 at 2:06 pm
Brandie Tarvin (2/12/2008)
If you think you need the rights and you're not getting them from the person responsible, then you've got no choice but...
February 13, 2008 at 2:14 pm
Brandie Tarvin (2/11/2008)
February 11, 2008 at 1:13 pm
I always take the stance that you should be justifying what rights you need, not how that is implemented.
If the team responsible for granting rights to Servers or Groups...
February 7, 2008 at 2:42 pm
I'll would like to just second the use of ask tom (Tom Kytes site). Tom Kyte, while short tempered, arrogrant, Oracle biggot (Not really that bad :)), he is a...
February 6, 2008 at 1:54 pm
I think the normal concept of Virtual Machines, ie VMWare running on a server with multiple CPU's, lots of memory and maybe a RAID array is not terribly suited to...
January 31, 2008 at 2:37 pm
Are you using parameterised code ?
//Not parameterised
SqlDataReader myReader;
SqlCommand cmd = new SqlCommand("SELECT column1 FROM table1 WHERE colum1 = 'xyz'", sqlConn);
myReader = cmd.ExecuteReader();
----------------------------------
//parameterised
SqlDataReader myReader;
SqlCommand cmd = new SqlCommand("SELECT column1 FROM...
January 14, 2008 at 9:48 pm
Periods are used to seperate domains, ie owner, database, table and column. IMHO its a very bad idea to use it as part of an object name. In fact, while...
January 13, 2008 at 3:17 pm
Good pickup...and well done for posting the solution 😉
January 7, 2008 at 4:19 pm
andre (1/7/2008)
Sorry Did not make myself clear 🙂
When trying to declare DR as Datarow in the Code window of report, RS throws an error
Datarow does not...
January 7, 2008 at 4:12 pm
To the best of my knowledge there is no such thing as a Report header in SSRS. Can you clarify that you are talking about a Page Header? Or have...
January 7, 2008 at 3:24 pm
andre (1/7/2008)
Thanks for your reply.
Yes I am try to build up a string of values.
Interestingly if I do the following
Public Function BldTypes(ByVal DT As DataSet) As String
This line does...
January 7, 2008 at 3:05 pm
Viewing 15 posts - 1 through 15 (of 17 total)