Viewing 15 posts - 2,086 through 2,100 (of 2,169 total)
You're welcome.
They are still using my design for the XML file import, SEVEN years after implementation... That's solid!
Do I need to mention that the schema for XML file has been...
June 15, 2006 at 8:25 am
Four years of practice
We (insurance broker company) imported around 400 XML files every day, each of them between 2 and 10 mb.
The XML files could...
June 15, 2006 at 8:01 am
You have indexed the addresses right now with [2]. What if there are more addresses? Or a better example, several orders for a customer.
This is because you set "root" to...
June 15, 2006 at 6:16 am
Or simply
SELECT YEAR(MyField) FROM MyTable
June 15, 2006 at 5:41 am
Yes. I did not understand he was knowledgeable about XML otherwise, since he wrote only for customer node.
And I also know that the technique you are using does not work...
June 15, 2006 at 5:34 am
What you just selected is XML
<Cust_id>101</Cust_id>
<Cust_fname>"George"</Custf_name>
<Cust_lname>"Spencer"</Cust_lname>
<Cust_address>"Some Address"</Cust_address>
<Cust_dob>
<day>2</day>
<month>10</month>
<year>1963</year>
...
June 15, 2006 at 3:56 am
The original posting was inserted in last 7 days including today.
June 14, 2006 at 5:52 am
Select * From TblName where <Date_Column> >=DateAdd(day,DateDiff(day,0,getdate()),-6)
or
Select * From TblName where <Date_Column> >DateAdd(day,DateDiff(day,0,getdate()),-7)
June 14, 2006 at 3:46 am
As I wrote yesterday?
June 13, 2006 at 5:19 pm
You really need DYNAMIC SQL for this.
Search for SOMMARSKOG and DYNAMIC SQL on the Internet and you will find a person who has good insight about this.
June 13, 2006 at 2:31 pm
I really don't think ASP is doing the joins. SQL Server is doing the joins.
Also I believe that you are doing a CROSS JOIN (Cartesian Product), selecting all possible combinations...
June 13, 2006 at 2:24 pm
For the first, CROSS JOIN creates a CARTESIAN PRODUCT, which means you end up with ALL combinations of freight_manager and LargeOrderShippers!
Alter your function to include something...
June 13, 2006 at 8:25 am
What was the solution?
June 13, 2006 at 6:45 am
Well, sometimes life is easy.
BTW, there is a six digit limit for the conversion as stated in BOL
This table shows the style values for float or real conversion to character...
June 13, 2006 at 5:46 am
It made some sense. But to be really clear, do you have an example of table design and about 20 rows of test data?
Example:
TABLE LoA
----------------------
PersonID INT,
Date DATETIME,
Days TINYINT
And...
June 13, 2006 at 12:31 am
Viewing 15 posts - 2,086 through 2,100 (of 2,169 total)