Viewing 15 posts - 10,996 through 11,010 (of 26,486 total)
Charmer (6/29/2012)
INSERT [dbo].[CADInc] ([CADNo], [RptDttm], [District], [IncidentID], [ProductID]) VALUES (2012000001, CAST(0x00009FCC00FFD238 AS DateTime), NULL, 100040002662851, 2)GO
INSERT [dbo].[CADInc] ([CADNo], [RptDttm], [District], [IncidentID], [ProductID]) VALUES (2012000001, CAST(0x00009FCC00FFD238 AS DateTime), NULL, 100040002662851, 2)
GO
INSERT...
June 29, 2012 at 5:51 am
Sorry, looks very similar to each other.
June 29, 2012 at 5:38 am
sivag (6/29/2012)
thankslynn pettis,
anthony.green,
cap.hector
for your help
if u have time means
plz have look on this question
http://www.sqlservercentral.com/Forums/Topic1322880-391-1.aspx
and give some idea related to this
http://www.sqlservercentral.com/Forums/Topic1322880-391-1.aspx
June 29, 2012 at 5:16 am
I'm still having a problem understanding what you are trying to accomplish. It would help if you would provide the expected results in an unabiguous manner, meaning as a...
June 29, 2012 at 4:44 am
Charmer (6/29/2012)
USE [MyDB]
GO
/****** Object: Table [dbo].[CADInc] Script Date: 6/29/2012 2:04:16...
June 29, 2012 at 4:32 am
The clustered index will still not guarantee the order of the data when output via a select statement.
The only way to guarantee the order of the data is to use...
June 29, 2012 at 12:17 am
Jeff Moden (6/28/2012)
C# Gnu (6/28/2012)
As regards postcode validating I found an intersting post - essential reading on the subject!
It turns out there are some exceptions to...
June 28, 2012 at 10:26 pm
It would help if you could provide the DDL (CREATE TABLE statement) for the table, some sample data as a series of INSERT INTO statements (sample date means just taht,...
June 28, 2012 at 6:32 pm
davoscollective (6/28/2012)
Unfortunately this myth comes straight from the horse's mouth:
"Before you can create the...
June 28, 2012 at 6:16 pm
There may be other ways to this, but based on what you provided this does work.
create table #TestData (
CloseDate date,
Volume int
);
go
insert into...
June 28, 2012 at 4:40 pm
Okay, what kind of function are we talking about; scalar, inline table valued, multi-statement table valued function?
How is it being used?
June 28, 2012 at 4:03 pm
Biggest problem, we can't see what you see. Anything we tell you is nothing more than a shot in the dark. When you talk about a function running,...
June 28, 2012 at 2:22 pm
Since you indicate that the code works fine when run with the given input in SSMS, I would start looking at the code that is making the call to SQL...
June 28, 2012 at 2:16 pm
All we are doing is taking shots in the dark. We can't see what you see. You have to set something up that at least mirrors the problem...
June 28, 2012 at 2:09 pm
I think we are suffering from a language issue, english is obivously not your first language. You have post some good information but it doesn't convey what it is...
June 28, 2012 at 2:07 pm
Viewing 15 posts - 10,996 through 11,010 (of 26,486 total)