Viewing 15 posts - 16 through 30 (of 107 total)
rhythmk (6/26/2012)
Methew (6/26/2012)
IF OBJECT_ID('TempDB..#mytable1','U') IS NOT NULL
DROP TABLE #mytable1
CREATE TABLE #mytable1
(
ID INT IDENTITY(1,1) ,
UName NVARCHAR(50),
alert_datetime DATETIME
)
SET IDENTITY_INSERT #mytable1 ON
INSERT INTO #mytable1
(ID,...
June 26, 2012 at 12:51 am
Ok i used @dwain.c suggestion
i might not think about data integrity.....If yes then solved my problem
June 13, 2012 at 3:09 am
dwain.c (6/12/2012)
Methew (6/12/2012)
The only issue is for data integrity....i dnt want mixing of data...Is Inserted.ID is good option OR SCOPE_IDENTITY?which one i should use?
Well, it's not like Inserted.ID is going...
June 12, 2012 at 7:28 am
The only issue is for data integrity....i dnt want mixing of data...Is Inserted.ID is good option OR SCOPE_IDENTITY?which one i should use?
June 12, 2012 at 7:21 am
Single transaction mean with in a store procedure?
What if i do not have Identity column id first table?If i have only uniqueidentifier....?
What if i create a time stamp in first...
June 12, 2012 at 7:00 am
My host Provider have to upgrade it for me.They have 2008 and above.
My question was as a developer what changes should i made to my script?should i change tables,SP's etc...
May 28, 2012 at 8:15 am
Let me clear you first.i want to show related search.For example if you search for PIZZA i will show you PIZZA near to your location.This is search.Now related search is,i...
May 24, 2012 at 7:52 am
i need like this
PIZZA HUT PIZZA PIZZAggg
PIZZA HUT AD PIZZA ABC
PIZZA HUT PK...
May 24, 2012 at 7:14 am
PIZZA HUTPIZZAPIZZA555
PIZZA HUTPIZZAPIZZAggg555
PIZZA HUT ADPIZZA ABCPIZZA555
PIZZA HUT PKPIZZA INDOPIZZA555
PIZZA HUT SINGAPORE PTDLTDPIZZAPIZZA555
PIZZA HUT SINGAPORE PTE LTDPIZZAPIZZA555
PIZZA HUT UAEPIZZA PHPPIZZA555
If you see i have bolded and underlined same data(mean duplicated result)....i...
May 24, 2012 at 6:29 am
Ok here is my detail...If you please run this code,it will give you duplicate data in same rows as well as in different row....i do not want any record to...
May 24, 2012 at 6:00 am
If i pass search parameter like 'pizza',i am getting result like this which i do not want
COMPANY CategoryName comp_kws ...
May 24, 2012 at 5:05 am
RBarryYoung (5/21/2012)
IPSearchLight.GeoLocator loc = new GeoLocator();
loc.Database_Path_or_URL = "GeoLiteCity.dat";
string VisitorIP = Request.ServerVariables["REMOTE_ADDR"];
...
May 21, 2012 at 11:10 pm
RBarryYoung (5/20/2012)
Methew (5/20/2012)
i do not know the internal structure(and i do not know how to know/check its internal structure)...i have this file GeoLiteCity.DAT.I am passing IP address of current user...
May 20, 2012 at 11:14 pm
i do not know the internal structure(and i do not know how to know/check its internal structure)...i have this file GeoLiteCity.DAT.I am passing IP address of current user...
May 20, 2012 at 7:53 am
Viewing 15 posts - 16 through 30 (of 107 total)