Viewing 15 posts - 511 through 525 (of 927 total)
Check this one
declare @IPaddresses TABLE ([IPAddress] VARCHAR(20),[dte] [smalldatetime])
-- Inserting Data into Table
INSERT INTO @IPaddresses(IPAddress,dte)
VALUES('86.148.129.66','20-jun-2014 13:00:00')
INSERT INTO @IPaddresses(IPAddress,dte)
VALUES('86.148.129.66','20-jun-2014 13:30:00')
INSERT INTO @IPaddresses(IPAddress,dte)
VALUES('86.148.129.66','20-jun-2014...
July 17, 2014 at 4:56 am
mick burden (7/17/2014)
Basically my program every 30 minutes records the date/time and the current IP Address of my PC onto a table.
When you say this, how exactly are you recording...
July 17, 2014 at 4:29 am
ChrisM@Work (7/17/2014)
July 17, 2014 at 4:08 am
pilla.sree85 (7/17/2014)
IF EXISTS(
SELECT L1.AcctNo,L1.ReceivedFileID from...
July 17, 2014 at 3:51 am
Let say you have a IP Addess
255.255.255.0
is changed to
255.255.255.1
how would you like to see this result set?
July 17, 2014 at 3:44 am
Good Knowledge base question. Thanks for sharing
July 17, 2014 at 3:41 am
The value of a custom variable can be a literal or an expression:
If you want the variable to contain a literal value, set the value of its Value property.
If you...
July 17, 2014 at 12:18 am
Koen Verbeeck (7/16/2014)
I remembered that it is sometimes called a "primary key constraint", so the question was easy enough.Still I expect some flaming in this topic 🙂
+1, Nice question
July 16, 2014 at 1:42 am
raghuldrag (7/14/2014)
Here Some Of the accounts are manually defined in sales and maintenance after ...
July 14, 2014 at 4:30 am
what exactly the issue you are facing ? as per the query you will get the aggregated result. One question, when you say "Account Type" Maintenance/Sales ? How do u...
July 14, 2014 at 3:55 am
what is your database collation, have you checked it ?
July 8, 2014 at 1:48 am
Viewing 15 posts - 511 through 525 (of 927 total)