Viewing 15 posts - 19,366 through 19,380 (of 26,484 total)
Could you post some sample data in a readily consummable format for loading your tables and the expected results of the query based on the sample data?
For assistance in this,...
August 3, 2009 at 8:01 pm
Using the code from earlier in the thread, here is how it could be written using two CTE's.
with myTableCTE as ( -- This CTE creates the column field_C that is...
August 3, 2009 at 7:56 pm
Chris Kitchen (8/3/2009)
I'm wanting to make use of the new [Date] data type in SQL Server 2008 but I'm having a problem. I have a .txt file that contains...
August 3, 2009 at 7:39 pm
It could take several minutes for a the cluster to failover if the active node should crash. All sessions would be disconnected during that time.
Not sure what you could...
August 3, 2009 at 7:34 pm
Allister Reid (8/3/2009)
August 3, 2009 at 4:53 pm
I have tried rewriting your code such that I could read it easier.
Please review both the SELECT and UPDATE statements. Let us know if the SELECT statement returns what...
August 3, 2009 at 4:48 pm
In addition, the code you are posting may not work as written.
August 3, 2009 at 4:20 pm
So, the addition of two columns in the stored procedure definition also resulted in the stored procedure returning two addtional columns as well, correct? Are these additional columns also...
August 3, 2009 at 4:18 pm
rboggess (8/3/2009)
David Reed (8/3/2009)
Srsly? You find Tom Demarco's "lack of experience" disturbing? Or Jeff Atwood's experience too limited to agree with his conclusions?
I didn't say "lack of experience" -- I...
August 3, 2009 at 4:06 pm
Here is my delimited split dunction for nvarchar values.
August 3, 2009 at 3:54 pm
John Paul (8/3/2009)
The #temp table columns 'Declaration' and the substore procedure(sp2) Columns will be the Same ..
Show us with some actual code. I can't figure out...
August 3, 2009 at 3:37 pm
How about posting the table DDL, sample data, and expected results. Please read the first article referenced in my signature block about asking for help. Follow the instruction...
August 3, 2009 at 3:34 pm
After first fixing the missing comma after field_c in your code, you will get the following error:
Msg 207, Level 16, State 1, Line 11
Invalid column name 'rowNum'.
You can't use the...
August 3, 2009 at 3:31 pm
John Paul (8/3/2009)
but it need to insert 4 Columns insert into #temp table ,...
August 3, 2009 at 3:23 pm
JC (8/3/2009)
I am trying to incorporate a CAST statment into my CASE statements and am not having any luck and do not know if that is even possible.
This is...
August 3, 2009 at 3:16 pm
Viewing 15 posts - 19,366 through 19,380 (of 26,484 total)