Viewing 15 posts - 46 through 60 (of 120 total)
You might have better luck using SAVEASXML in the recordset object of ADO (2.6 and higher)
I have found it is possible to please all of the people all of the...
August 23, 2002 at 9:13 am
Presuming you're using SQLServer 2000 then check out the FOR XML and OPENXML keywords.
If you're on anything less, like say 7. then you can use ADO XML recordsets (ADO 2.6...
August 16, 2002 at 3:13 am
In my opinion it is best to get into the habit of enforcing Unique Constraints for primary keys. They do perform better and you protect you table against less thorough...
August 15, 2002 at 7:07 am
Not quite sure what you're trying to acheive with the 'Package Rollback'. How can the Source file be either in the Source or Destination directories, surely Source contains Source File,...
June 28, 2002 at 9:18 am
If your select is slow the first place to look is your indexing strategy on the two tables. Looks to me that you will have a primary key of Contractor...
June 28, 2002 at 9:11 am
Hi Andy, yup I agree however I thinks June's problem is a little complexe. Her example is
'Hotel name','Arrive date','Length of stay'
And the corresponding translation might be Nom D'Hotel, Jour...
June 28, 2002 at 4:36 am
I guess you're not returning the values in correct grammatical order for the language. Steve is right, all you need to do is create a column (probably numeric) giving a...
June 28, 2002 at 2:03 am
OK as I understand it so far you need to run the same procedure but have it affect different tables depending on the module number. I suspect you're right about...
June 28, 2002 at 1:46 am
Hi June
Andy's right you need some sort of order by clause or possibly a clusterd index, but I can't see how that would help in the example you've quoted.
Is it...
June 27, 2002 at 9:22 am
Hi Jan
Not quite clear as to your design problem.
Is it that you want a way of identifying database objects that belong to a specific web-service so that your php...
June 27, 2002 at 9:15 am
a propos of the usage of cursors, suggest you declare the cursor as FAST FORWARD since you are only scrolling forward and reading data, this will be more efficient than...
June 27, 2002 at 9:08 am
This is an intriguing query. Can you explain a little more as to what you're wanting DTS to do for you. Why, for instance, do you need to DTS to...
June 26, 2002 at 1:19 am
Didn't explain myself properly
SELECT * from [tablename]
LEFT OUTER JOIN [tablename2].......
WHERE [tablename.fldname_1] = [value]
AND [tablename.fldname_2] > [tablename2.fldname] (ONLY IF tablename.fldname is not null)
I have found it is possible to please all...
June 25, 2002 at 8:13 am
Thanks Dan. that's waht I thought, to be honest I've not noticed any performance gain using count(1) in SQLSERVER. I've seen a gain using the ROWS column from SYSINDEXES, but...
June 25, 2002 at 1:20 am
I'm not that clear as to what you're trying to do. Are you talking about Text as nText etc or a varchar.
Just a thought, You might find it more certain...
June 24, 2002 at 1:31 am
Viewing 15 posts - 46 through 60 (of 120 total)