Viewing 15 posts - 106 through 120 (of 120 total)
|
January 27, 2006 at 6:11 am
On the contrary, overuse of stored procedures (e.g. writing much to complicated procs) is a common mistake.
May i know the reason for this, as we are heavily dependant on stored...
January 27, 2006 at 6:04 am
Is it pinging with server name . check your dns is configured properly or not...
January 26, 2006 at 10:24 pm
Thanks a lot for the replay...
January 23, 2006 at 2:13 am
Hi Raj,
I was trying this
I was restoring a database with stats and resukt of this, I wanted to store into a table ..
declare @mdf_name varchar(70)
declare @ldf_name varchar(70)
declare @from_disk varchar(70)
declare @mdisk...
October 22, 2005 at 12:12 am
Hi, Raj,
Even I have tried but the problem is you
Cannot perform a backup or restore operation within a transaction.
October 21, 2005 at 7:10 am
Hi Gupta,
as per me ,
the Other way is to change the dataype to Text ...
October 14, 2005 at 1:31 am
Hi Raj.
Thanks for the reply..
Is there any tools for Coverting the scripts, procedures and queries from Sql server 2000 to MySql. I tell u what is exactly happening. We are...
October 1, 2005 at 5:36 am
Hi Raj,
Thanks for the reply.
Here What meant for Tuple is record and Entity means Table.
I have a table called Products having 74300 records. When i execute
"select * from products"...
October 1, 2005 at 5:27 am
Thanks to raj for Providing the following information..U can Use
Start like this:
(i) Database name and Service pack.
(ii) No of Databases...
September 28, 2005 at 11:02 pm
----AUTHOR : VEERESH V NASHI
-----CREATED ON : 14-10-2005
The following procedure shuold help u ...
CREATE PROCEDURE prc_CleanUp_DataBase AS
DECLARE @Cnt INT
DECLARE @sql1 varchar(1000)
DECLARE @key_Name varchar(100)
DECLARE @tab_Name varchar(100)
BEGIN
SET NOCOUNT ON
CREATE TABLE #Temp1
( CODE...
September 20, 2005 at 10:33 pm
What is the solution u found for the problem.. Will please explain me.
September 19, 2005 at 11:09 pm
These Decrypting tools are successfull in many times. Dont You think then SQL
not that much secured. Suppose if some body wants to hide the logical steps then they usually...
September 17, 2005 at 5:51 am
select * from sysobjects where xtype ='u'
September 16, 2005 at 4:37 am
like this
create table #temp
(mycolumn varchar(1000))
insert into #temp execute master.dbo.xp_cmdshell 'dir c:\'
select * from #temp
September 15, 2005 at 11:40 pm
Viewing 15 posts - 106 through 120 (of 120 total)