Viewing 15 posts - 1 through 15 (of 40 total)
how many rows are returned?
Make sure that you fetch the needed columns only.
Create a view and create index for fast retrieval of data(anyhow using index is not advisable if the...
March 9, 2009 at 12:21 am
Output keyword is mandatory while executing an sp if the output datatype is other than integer..
March 14, 2007 at 6:10 am
what r u going 2 do after getting such result.. its seems ridiculous b4 thinking
March 13, 2007 at 1:38 am
Something is going wrong in ur sp, so debug it... u could catch t errorno in sp and throw its description there itself
March 13, 2007 at 1:11 am
Something is going wrong in ur sp, so debug it... u could catch t errorno in sp and throw its description there itself
March 13, 2007 at 1:10 am
declare a temporary table.
declare a cursor.
fetch data from cursor to local variables.
check the variable data and cursor data,
If both are equal, insert it into the temporary table
If not, insert...
December 15, 2006 at 5:44 am
I don hv any idea regarding ur ques, but can u post the snippet of the sms function that u hv..
Share it....
December 13, 2006 at 12:26 am
T things that u hv blogged above r right.But may i know t tech reason for why Microsoft restricts altering more than one column in a statement .
i.e., alter table test...
December 12, 2006 at 9:46 pm
The only way that i know(still now) is execute xp_cmdshell 'net name' and insert the data in a temp table, then get the user name from that table..
Hope there will...
November 22, 2006 at 12:44 am
Thanks for ur response.But i need a site for .Net Technology and not for sql.It must be similar to this site(sqlservercentral.com) in forums,articles, active topics and etc.,
November 21, 2006 at 9:45 pm
The reason is that, a constraint can be applied only when there is no conflict with the existing data.
So be sure that you handle that before
November 14, 2006 at 4:32 am
create proc temp_proc as
declare @db varchar(50);
declare @CProc varchar(500);
declare @DProc varchar(500);
set @CProc=' create procedure _proc_name as select name from sysobjects'
set @DProc = 'drop procedure _proc_name'
set @db='tempdb '
exec('use ' + @db +...
November 6, 2006 at 11:05 pm
Viewing 15 posts - 1 through 15 (of 40 total)