Viewing 15 posts - 46 through 60 (of 175 total)
Do you have a single index which covers both Tracking NO and Branch NO?
May 11, 2010 at 1:34 pm
Arjun Sivadasan (5/11/2010)
Is this what you need?
yes, thank you so much.
May 11, 2010 at 9:00 am
Do you know the password?
Search this site for "excel password protected". You'll find plenty of forum posts.
May 10, 2010 at 4:59 pm
In SQL Server 2005 a datetime field contains both date and time.
So this will extract the hour out of a datetime field-DATEPART(hour,Timestart)
Are you trying to control the flow of code...
May 10, 2010 at 10:24 am
Sorry sent the last reply off too soon.
You'll probably need the CASE expression.
http://msdn.microsoft.com/en-us/library/ms181765.aspx
CREATE TABLE #TEST
(TimeStart datetime)
INSERT INTO #TEST VALUES ('2010-05-10 00:30:00')
INSERT INTO #TEST VALUES ('2010-05-10 14:30:00')
SELECT
'ActDate'...
May 10, 2010 at 10:01 am
You'll prbably need the CASE expression.
http://msdn.microsoft.com/en-us/library/ms181765.aspx
SELECT
'ActDate' =
May 10, 2010 at 9:51 am
>>Most of the actual SQL code is generated & issued by a 3rd party application
So does this 3rd party support 2008?
May 5, 2010 at 5:04 pm
Hello Cold Coffee and thanks.
No its not getting my desired results. The SELECT statement for the INSERT should return these records:
A,5
C,1
These are the records in #ListUpdate that are not in...
May 5, 2010 at 10:18 am
ColdCoffee (5/3/2010)
quote]
So I...
May 4, 2010 at 1:52 pm
I would perform a search on "SQL server float vs decimal" to see if float will work for you. I am not an expert by any means on this subject...
April 30, 2010 at 9:26 am
Bhuvnesh (4/24/2010)
Can i check myself without his interference ?. or can you suggest any other way to send mails to longer list
If you don't have access to the mail administrator...
April 26, 2010 at 2:44 pm
Hi,
A few thoughts. Your mail server/gateway may have limitations on the number of recipients as an anti-spam measure. If your mail admin is available I would ask. Can you send...
April 23, 2010 at 8:33 am
I think you can use OPENROWSET for this.
April 22, 2010 at 4:42 pm
ashish.kuriyal (4/22/2010)
lovely scripts...while I want to retain the latest 2 files, no matter since when the files are there in folder, but just latest two to retain
You should be able...
April 22, 2010 at 9:23 am
Viewing 15 posts - 46 through 60 (of 175 total)