Viewing 15 posts - 241 through 255 (of 395 total)
Change uoyr query
SELECT [date]
FROM Table1 T
LEFT OUTER JOIN ( SELECT MIN([date]) as DT
FROM Table1
GROUP BY [date], PhoneNumber, Amount) T1
ON T.[date] = T1.[DT]
WHERE T1.[DT] IS NULL
February 11, 2005 at 3:07 am
Following is a good article which match exactly with your requirements
http://www.sqlservercentral.com/columnists/ccubley/findinganddeletingduplicatedata.asp
February 11, 2005 at 2:28 am
Thank you
But can we chnage the primary file name from ALter Datbabase ???
February 10, 2005 at 10:02 pm
Thankx Jonathan,
I thought there should be a easy way of doing it from sql server 🙁
anyway thank for the answer
February 10, 2005 at 9:43 pm
I have done this by using vb 6 and Microsoft ADO 2.5 and set it into the following project reference:
dim rst as new adodb.recordset
dim adoConn as new adodb.Connection
You...
February 9, 2005 at 9:19 pm
Set rs=Server.CreateObject("ADODB.Recordset")
sql = "SELECT rr.RaceLogRsltsID, rr.FinalTime, rg.RaceDist, rg.RaceType, rg.EventName, rg.EventDate, rg.RaceLogID "
sql = sql & "FROM RaceLog rg INNER JOIN RaceLogRslts rr ON rr.RaceLogID = rg.RaceLogID "
sql = sql &...
February 9, 2005 at 1:44 am
include [
EXEC ('drop table ['+ @servername+'data]')
EXEC ('SELECT name into ['+@servername+'data] FROM ['+ @servername+ '].master.dbo.sysdatabases')
February 9, 2005 at 1:31 am
Hey, this script is working well for me. what is your server may be key words are used for databaases
When i run that script i get
(18 row(s) affected)
February 9, 2005 at 1:17 am
This might be time out issue. There is another way of upgrdaing access to SQL Server by using Access Upgrade Wizard which is an inbuilt function in access.
When I searched...
February 8, 2005 at 9:55 pm
I am really intersted on this article
but how can find those IDs in my enviroment
strOlStoreID = "18DE200A0C99D6DC800AA002FC45A06000000504B435654303100D"
strOlEntryID = "5B7D1118DE200A0C99D6DCCCBA91795B7D11145A06000000504B435654300000"
February 1, 2005 at 12:41 am
seems to be a good article
but
is this query correct
CREATE TABLE [tblCpls] (
[cplNum] [int] NULL ,
[cplName] [varchar] (4000) NULL ,
[cplDesc] [varchar] (1000) NULL,
CONSTRAINT [PK_tblList] PRIMARY KEY CLUSTERED...
January 31, 2005 at 11:31 pm
thankx for the info.
this is a special purpose
January 28, 2005 at 2:13 am
Viewing 15 posts - 241 through 255 (of 395 total)