Viewing 15 posts - 5,101 through 5,115 (of 5,504 total)
Yes, there is. But it's not like "just add an output=EXCEL parameter"...
July 16, 2009 at 1:31 pm
I didn't mention to get the column information from the flat file you've been talking about.
What I've been talking about is to export the relevant column definitions from the Cache...
July 16, 2009 at 12:12 pm
Is there any specific reason you have to use flat files (e.g. large amount of data using the performance gain of bcp)?
Would it be possible to add the Cache database...
July 16, 2009 at 11:32 am
ifila (7/15/2009)
...I ran the above code and am missing some records, when i do some before and after testing:(
Thanks
Isn't that an expected effect when running a DELETE statement? :ermm:
If this...
July 15, 2009 at 3:24 pm
Hi,
attached please find a SQL2000 compliant solution. As far as I can see you need to use a subquery to get the order of the names...
Just out of curiosity: What's...
July 15, 2009 at 2:53 pm
Would you mind to provide some sample data as an attachment so we can test if a solution someone may think of actually works and is giving the expected result?
20...
July 15, 2009 at 2:19 pm
Would something along those lines help?
SELECT ar.ArchiveID,
PublishedPosition,
MAX(ar.SequenceID) AS SequenceID
FROM dbo.tblArchiveRecords ar
INNER JOIN dbo.tblPublishPosition pp
ON ar.ArchiveID=pp.ArchiveId
GROUP BY ar.ArchiveID,pp.PublishedPosition
/*
ArchiveIDPublishedPositionSequenceID
1-9223372036854775808-9223372036854775806
2-9223372036854775808-9223372036854775803
3-9223372036854775808-9223372036854775800
*/
July 14, 2009 at 3:55 pm
As always, the answer is "it depends".
If you refer to the first option in the article for deleting just one row I would agree that this is the best way.
What...
July 14, 2009 at 3:46 pm
Hi,
in addition to your DDL statements please provide sample data together with expected results and what you've tried so far.
For details on how to post sample data please see the...
July 14, 2009 at 3:24 pm
GilaMonster (7/13/2009)
Dave Ballantyne (7/13/2009)
You can lead a horse to water but you cant force him to drinkhttp://www.sqlservercentral.com/Forums/Topic751918-8-2.aspx?Update=1
On second thoughts, I think I'm leaving that thread alone...
tatcalltype ='null'
Why.....
He's back... ->...
July 14, 2009 at 10:33 am
You might have a missing index issue (probably missing for your temp table).
We can't tell for sure since there is no more information available from your site.
Please read and follow...
July 14, 2009 at 10:29 am
triple post.
please see here and here . All posts have one answer so far, making it hard to tell where to continue if required...
July 14, 2009 at 9:06 am
triple post.
please see here and here . All posts have one answer so far, making it hard to tell where to continue if required...
July 14, 2009 at 9:05 am
Viewing 15 posts - 5,101 through 5,115 (of 5,504 total)