Viewing 15 posts - 31 through 45 (of 48 total)
When i see my hardware profiles it has undocked profile(currrent) and docked profile in the AS available hardware profiles.
does this effect?
October 31, 2006 at 7:53 am
how can I create an unique name for table everytime the procedure executed.
Thanks.
October 5, 2006 at 1:35 pm
The sql query which creates the temp table is a dynalic sql statement and that the reason I have used the global temp table over local temp table.
Thanks.
October 5, 2006 at 1:17 pm
One more question regarding these temporary tables.
I am creating a temp table in my stored procedure and droping at start of the next execution time.
What happens if two uses try...
October 5, 2006 at 12:42 pm
I tried the following code and it worked fine. Let me know if it's a correct way of doing it.
IF EXISTS( SELECT * FROM tempdb.dbo.sysobjects WHERE id=(SELECT id FROM tempdb.dbo.sysobjects...
October 5, 2006 at 12:24 pm
Even this code is not dropping the table.
Thanks.
October 5, 2006 at 12:18 pm
Is there any system procedure to know the size of the database like we use sp_spaceused to know the size of the table.
Thanks.
September 29, 2006 at 12:49 pm
One more thing I need to do is that to transfer sql jobs and dts packages associated with this database to the production server from development server.
How can I do...
September 28, 2006 at 8:40 am
I am going for backup and restore because I need to copy the data from development server to production box.
September 27, 2006 at 3:11 pm
Sorry guys I have posted the wrong function.
Following is the correct one.
CREATE FUNCTION fn_get_few_words (
@stringToSplit varchar(3000),
@numberOfWords int
)
RETURNS varchar(3000) AS
BEGIN
DECLARE @currentword varchar(3000)
DECLARE @returnstring varchar(3000)
DECLARE @wordcount int
SET...
September 26, 2006 at 9:29 am
Sorry guys. AS I was busy with my work I didn't check this forum for last few days.
The following is the procedure I find on the net.
Thanks for all your...
September 26, 2006 at 9:26 am
I found an user defined function and it worked really good.
Thanks.
September 22, 2006 at 8:53 am
Thank you very much for your help.
September 20, 2006 at 1:06 pm
Viewing 15 posts - 31 through 45 (of 48 total)