Viewing 15 posts - 346 through 360 (of 395 total)
February 14, 2004 at 3:43 am
Yes ur right kangaroo
But the problem is what will happen for a string which already has two '
Say
for Dinesh''Asanka
replace(Dinesh''Asanka) = Dinesh''''Asanka
My...
February 13, 2004 at 1:34 am
February 12, 2004 at 11:49 pm
Great!
But for QOD's better to impose dead line. beacuse u will be getting the answer in the newsletter on folowing day and u will be able to answer that question on...
February 12, 2004 at 11:06 pm
This will give u some idea of doing that
http://www.sqlservercentral.com/columnists/ccubley/findinganddeletingduplicatedata_printversion.asp
Search 'duplicate' in http://www.sqlservercentral.com
February 12, 2004 at 10:58 pm
Use folowing function to convert ' to ''
on Error GoTo eh:
Dim strName() As String
Dim i As Integer
strName = Split(txtName, "'")
Dim obj As Variant
txtName = ""
i = 0
For Each obj In...
February 12, 2004 at 10:50 pm
If I understand ur question I think ur looking for something like this?
Select * from orders where shipregion is not null
February 12, 2004 at 1:51 am
want to add more tuning into it!!
better if u replace
(shipdate > '20030101' AND shipdate < '20031231') to year(shipdate ) = 2003
and
(shipdate > '20020101' AND shipdate < '20021231') to...
February 12, 2004 at 1:37 am
http://www.geocities.com/sqlserverexamples/date5.htm
Goood site too
Declare @Fdaynm datetime -- First Day of Next Month
-- Set the @Fday to the first day of the next month
-- By adding a month to the...
February 11, 2004 at 11:01 pm
mmc.exe /s "C:\Program Files\Microsoft SQL Server\80\Tools\BINN\SQL Server Enterprise Manager.MSC"
January 29, 2004 at 2:07 am
Ok,
But my problem is with getting next number of identity column
January 28, 2004 at 1:11 am
Thankx for the answer
Actually I'm doing this via VB. Is there any way of doing it
January 27, 2004 at 9:08 pm
Thankx for the answer. That will be my last option If I didn't get any other solutions.
Ur solution is ok.
But problem existing when there...
January 27, 2004 at 3:15 am
Viewing 15 posts - 346 through 360 (of 395 total)