Viewing 15 posts - 631 through 645 (of 1,253 total)
did u "refresh" your enterprise manager and check whthr the procedure still existed.
August 26, 2008 at 11:56 pm
if you want to query only 1 level then what about this
select reportinglevelid ,
STUFF ((select (',' + Position)
from SampleOrg where reportinglevelid = 5
group by Position
for xml path ('')),1,1,'')
FROM SampleOrg...
August 26, 2008 at 1:31 am
check out Books Online on how to use cursors. Why do you need cursors. They are really performance drags.
August 26, 2008 at 1:16 am
use Datepart(mi,date1,date2)
August 26, 2008 at 1:12 am
Hi
During installation it asks for a instance name. The default instance name is the computer name. This option is selected by default. Maybe u did not notice it and went...
August 25, 2008 at 4:52 am
arjun.tewari (8/22/2008)
arjun.tewari (8/22/2008)
sg (8/22/2008)
(
num int, OP_Bal int, quantity int
)
insert into #Temps values(1, 234, 12)
insert into #Temps values(2, 234, 08)
insert into #Temps values(3, 234, 9)
insert into #Temps values(4, 234,...
August 22, 2008 at 2:23 am
nice solution amit.
August 22, 2008 at 1:32 am
Hi
I agree its part of a mindset but using them makes it clear where procedure starts and ends... Especially when you have lot of Control flow statements.
August 20, 2008 at 2:27 am
Hi
Do you mean to say that the products table has rows and you want to update the cost column . Then you are looking at a update statement not insert.
OR...
August 19, 2008 at 5:59 am
gr8 article Jeff. Keep them coming.
August 19, 2008 at 5:24 am
HanShi (8/12/2008)
@Chirag: on the internet I've found "Min_active_rowversion() was introduced in SP2 for SQL Server 2005".
thanks for the info.
Steve - I think the question ought to have been clear...
August 12, 2008 at 11:49 pm
True varchar(max) cannot be a part of a index. But it has its uses. Its much easier to store and manipulate large strings compared to sql server 2000.
August 12, 2008 at 11:35 pm
Varchar(fixedlength) has maximum capacity of 8000. i.e you can define varchar(8000). If you want to store more than this in a varchar column you need to use varchar(max). The maximum...
August 12, 2008 at 11:17 pm
i get an error "'MIN_ACTIVE_ROWVERSION' is not a recognized built-in function name. "..
August 12, 2008 at 12:10 am
Viewing 15 posts - 631 through 645 (of 1,253 total)