Viewing 15 posts - 1,546 through 1,560 (of 2,486 total)
Are you using an external app (DTS, VB, etc...) which determines if a record exists?
One option is to create a seperate stored procedure for each action. Then create another procedure which...
February 15, 2005 at 4:57 pm
A good tip for dealing with instances is to use a variation of the standard sp_addlinkedserver syntax and give the linked server a different name.
EG: sp_addlinkedserver 'Server_Inst', ' ', 'SQLOLEDB', 'Server\Inst'...
February 15, 2005 at 4:46 pm
Thanks Frank, another one to add to the list
February 15, 2005 at 4:14 pm
If you already have the server setup as a Remote Server then you'll need to give the linked server a different name.
EG If you have a server called ServerA. It...
February 15, 2005 at 4:07 pm
Ok, given the small amount of records, how about running a short VBScript over the file to split it into a seperate file for each table. Once that is done...
February 15, 2005 at 3:16 pm
Is this related to this task you were asking about previously?
http://www.sqlservercentral.com/forums/shwmessage.aspx?forumid=8&messageid=159272&p=3
How big is the file you're importing?
February 14, 2005 at 11:06 pm
I think you'll find that a "Syntax Error" aborts the batch.
If you want to ignore the error, why not validate the data before executing the statement? Maybe something like ISDATE()...
February 14, 2005 at 11:01 pm
I don't think it's to do with the outer join. Make sure you have followed Books Online exactly. If you miss even one part you won't be able to define...
February 14, 2005 at 10:26 pm
How about you check the glossary in Books Online. Then if you need further clarification, clearly state what you don't understand.
February 14, 2005 at 10:18 pm
Better than looking at Syscomments. Use the Information_Schema views. Best bet is probably INFORMATION_SCHEMA.ROUTINES.
Although given that you're comparing object across different servers, It might be better to try one of the many...
February 14, 2005 at 9:03 pm
Check the recovery model of the database that is failing. If it's set to 'simple', then you can't do transaction log backups.
February 14, 2005 at 5:57 pm
As AJ has said, What features are you wanting that QA doesn't provide?
There are quite a few editors out there,
- the afforementioned ApexSQLEdit
- SQL IDE from Imceda http://www.imceda.com/SQL_IDE_Description.htm
- for...
February 14, 2005 at 5:13 pm
Take a look at my script over here,
http://www.sqlserver.com.au/resources/ViewResource.aspx?resourceId=8
February 14, 2005 at 5:02 pm
Take a look at the SQL Server Health and History tool. It collects event log data into a repository database.
February 14, 2005 at 3:15 pm
Viewing 15 posts - 1,546 through 1,560 (of 2,486 total)