Viewing 15 posts - 61 through 75 (of 89 total)
Vijai (4/15/2008)
Create procedure df_bppr @de nvarchar(30)
As
Begin
Declare @sstr nvarchar(500)
Set @sstr = N'Alter Table tblbppr Add Constraint df_title Default...
April 15, 2008 at 1:37 am
Grant Fritchey (4/11/2008)
You could...
April 13, 2008 at 9:07 pm
SQLZ (4/11/2008)
April 11, 2008 at 6:35 am
Use ALTER INDEX to perform the following maintenance tasks for a Text index:
Rename the index.
Rebuild the index using different preferences. .
Resume a failed index operation (creation/optimization). ....
April 11, 2008 at 5:13 am
Is there anyway to build a SQL Update that can test the fields during the update and not update them if they are the same, but still update fields that...
April 11, 2008 at 4:49 am
siddiq,
Let me clearly explain, when connect the database through query analyser .you are giving user name ,password and servername only, i am right? here you are not mentioning the machine...
April 11, 2008 at 4:07 am
Hi siddiq
Did you try my previous post. i hope it will help you
April 11, 2008 at 2:53 am
It is simple query , i dont think it will not work in 2005
April 9, 2008 at 6:14 am
lersner (4/4/2008)
UPDATE Table1
SET ...
April 9, 2008 at 5:31 am
Ivanna Noh (4/3/2008)
both of these work for me, and return .75
SELECT cast((3.0/4.0) as float)
SELECT cast(3 as float)/cast(4 as float)
hi noh
you are right , in your second example instead of...
April 4, 2008 at 12:58 am
ramadesai108 (4/3/2008)
Thank you so much for your prompt reply, I have to fix this issue urgently. Here is my stored proc
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE Procedure...
April 4, 2008 at 12:35 am
Ram,
Can you show me the stored procedure which you connecting to the db grid.
I think your stored procedure is using multiple tables.if so how and which table the db grid...
April 3, 2008 at 8:06 am
Jeff Moden (3/31/2008)
Yes... don't use either... use an INNER JOIN instead.
hi jeff
your point is very usefull
as per my experience IN clause is usefull whene check Listed values
and EXISTS clause is...
April 3, 2008 at 1:14 am
Patrick Ige (4/1/2008)
table -A
pid mid
--- ----
1 7
2 29
table -B
sid pid mid
---...
April 3, 2008 at 12:57 am
Viewing 15 posts - 61 through 75 (of 89 total)