Viewing 15 posts - 46 through 60 (of 86 total)
Just to recap. Below is a script that will produce the environment. Once you have the environment created, write a sql statement that will do the same as the following statement...
October 25, 2005 at 3:56 pm
I don't want to eliminate the nulls. That is the point the *= syntax does not eliminate the nulls which is the desired result. I am not trying to change...
October 25, 2005 at 3:39 pm
Nice try,
I went that route as well. I tried
from table2 t2 left outer join table1 t1 on t1.id=t2.id
from table2 t2 left outer join table1 t1 on t2.id=t1.id
from table1 t1 left outer join table2 t2 on t1.id=t2.id
from table1...
October 25, 2005 at 3:24 pm
The statement with the *= join syntax is the correct and desired output. Here is the english version of what I am trying to accomplish. I have two tables that...
October 25, 2005 at 3:17 pm
Thanks but I don't think that is correct either. One, because I tried it and it produced yet another completly wrong recordset and two, because t2.data=2 and t1.data=5 should be...
October 25, 2005 at 2:55 pm
Just a short additional note.
You dont have to reinstall to change from Windows Authentication to Windows and SQL Authentication.
You can access this property in either the registry[HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\MSSQLServer\MSSQLServer\LoginMode] or through EM...
September 29, 2005 at 7:04 am
Sorry
I don't have any magic suggestions as to why this might be occurring. The only thing that I would do at this point is try to get to the least...
September 27, 2005 at 9:40 am
Do you have the paramater @TruncateDeweyDecimalPlaces specified more than one place in your code?
I am assuming that you might be doing something like this.
string sql =...
September 27, 2005 at 9:01 am
Can you post the code .net snippit that you are using?
September 27, 2005 at 7:17 am
Thanks for the clarification Ray.
Glad someone with a lot of expierence is watching over our sholder.
That is never a bad thing.
August 4, 2005 at 1:30 pm
Boy, the ideas just keep comming.
You could possibly seralize the data into xml (ie Select ... for xml) and pass the data like that. Of course if your data exceeded...
August 4, 2005 at 12:37 pm
I love for somone to tell me that something cannot be done. It stimulates the thinking.
It occurs to me that table is a type of variable such that
declare @t...
August 4, 2005 at 12:17 pm
I have found that to be an inaccurate statement. If the port is the standard SQL default, then it is accurate to say that the port is not required. Once...
August 4, 2005 at 12:07 pm
I am not aware of a way to do exactly what you are asking, but I think that there may be a work around.
If your SP is a simple select...
August 4, 2005 at 7:43 am
What a bunch of whiners. You know life is not fair and all too often the problems we face...
July 9, 2004 at 9:17 am
Viewing 15 posts - 46 through 60 (of 86 total)