Viewing 15 posts - 5,746 through 5,760 (of 6,678 total)
The first thing you need to do is run an integrity check on that database - just as the message is telling you (sorry, but I have to wonder if...
December 30, 2008 at 7:38 pm
SELECT ...
,CASE WHEN COALESCE(Memo, '') = ''
THEN 'NO'
...
December 30, 2008 at 3:41 pm
interfac (12/30/2008)
SELECT master.id, master.field1, child.field1
FROM master INNER JOIN child on master.id = child.masterID
WHERE child.id =...
December 30, 2008 at 3:27 pm
One thing you can try - might work, is to prefix all calls to the system views with the database and run the script from within the context of a...
December 30, 2008 at 2:26 pm
No - once a database has been upgraded, it cannot be restored or attached to an older version. This was true from 2000 to 2005 and is still true...
December 30, 2008 at 11:39 am
This is a classis UNPIVOT process. You can review UNPIVOT in Books Online to see how to use it to get what you want. Another option you could...
December 30, 2008 at 2:05 am
You can use VARCHAR(MAX) - but I have to ask why you are using dynamic SQL in the first place, and especially a dynamic SQL string that exceeds 8000 characters.
December 30, 2008 at 1:59 am
Posting the full code doesn't make any difference here. You have a cursor, inside a cursor looping through who knows how many rows - creating multiple temp tables for...
December 30, 2008 at 1:42 am
Yeah, I know what you mean - but, I think I have it a bit harder than you do. If you have ever worked with any flavor of Mumps...
December 30, 2008 at 1:27 am
Yeah - I can see that. Thanks for the pointer to the bug article - I knew I had seen something like that also, but since I no longer...
December 30, 2008 at 1:07 am
Jeff Moden (12/30/2008)
http://www.sqlservercentral.com/articles/SSIS/64766/
All I can say is "Good Grief"... it took this person...
December 30, 2008 at 12:59 am
Gail, thanks for the test. It is interesting that the OP is getting the same error that you would get if you tried to perform a diff before ever...
December 30, 2008 at 12:44 am
RBarryYoung (12/29/2008)
Chirag (12/2/2008)
i think i got this from some code written by Jeff Modem 🙂BeeeeeeeeeeeeBoooooooooooShshshshshshhhhhhhhhh....
😀
Hey, I was just wondering if he's 9600, 14400 or 19200.
December 29, 2008 at 9:31 pm
AFAIK - the QFX format is proprietary and banks actually have to pay Intuit for the specs. Not sure you are going to find anything available that is free.
December 29, 2008 at 3:32 pm
Okay, I am still not clear what you are trying to say. If you have replication enabled between two databases and these objects which you have created synonyms for...
December 29, 2008 at 3:17 pm
Viewing 15 posts - 5,746 through 5,760 (of 6,678 total)