Viewing 15 posts - 211 through 225 (of 245 total)
problem solved.
the project has about 6 different stored procedures that run at different intervals. i had changed 5 of them from varchar(8000) to varchar(max) but i'd forgotton to change the...
April 27, 2009 at 8:06 am
if you select from a subquery. i think its the same thing anyway.
select
x.col1,
x.col2
from
(select col1,col2 from table1)x
there's no real need to have more than one column if its an "IN ()"...
April 27, 2009 at 2:00 am
i've done a count of how many characters its allowing in this column and it stops at 4000
April 23, 2009 at 7:34 am
thanks for your replys.
i've tried kruti's suggestion and just ran
'select..... and then the xml file in quotes and it doesn't work either.
this leads me to believe taht the problem is...
April 23, 2009 at 7:13 am
the print statement actuall prints nothign at all 🙂
the function is grabbing everything between the "code" tags.
but i'm thinking that if doesn't exist in the XML within the variable...
April 23, 2009 at 6:21 am
Otoniel Cantu (4/22/2009)
April 22, 2009 at 1:37 pm
i suppose its up to your discretion.
personally, if there are columns that aren't being used by hardware but are by software and vice versa then i'd put them in different...
April 22, 2009 at 9:37 am
so you have 'hardware' data and 'software' data?
lets say that they have 5 rows that can apply to both hardware and data.
hardware has another 5 rows that software doesn't
and software...
April 22, 2009 at 8:28 am
ha, i blame everything on too much coffee. not lack of 😛
April 22, 2009 at 7:20 am
can you go to tools/options/results and set the maximum characters per column to a higher amount?
April 22, 2009 at 5:39 am
OK. I think i've unecessarily doubled up in my SP. i've got an output parameter and i'm also using a return statement :hehe:
create procedure dbo.sp1 (param1 int,param2 int, paramOutput =...
April 22, 2009 at 2:15 am
to be honest my manager isn't a big fan of triggers so we dont tend to use them as a matter of course.
for example, if we want a row to...
April 21, 2009 at 7:55 am
just read up on the scope_identiy on msdn. i suppose because i dont have any triggers in my stored procedure i'll be OK?
i dont want to do a blanked...
April 21, 2009 at 6:51 am
thanks for the reply. i'm now half way through the process of testing what i've done.
i've created a stored procedure on the 2000 server to insert to the table...
April 21, 2009 at 4:22 am
Carolyn Richardson (4/20/2009)
It's 3pm on a Friday, your production OLTP environment is down, every hour down costs the company one million dollars. People are phoning constantly, folks are rushing the...
April 20, 2009 at 9:37 am
Viewing 15 posts - 211 through 225 (of 245 total)