Viewing 15 posts - 2,911 through 2,925 (of 5,394 total)
Grant Fritchey (7/26/2011)
July 26, 2011 at 5:53 am
1. Does the other server need to be registered ?
2. How do I know that the other server is linked ?
1. Yes. Use sp_addlinkedserver or SSMS wizard (server objects, linked...
July 26, 2011 at 5:49 am
Did you register the linked server?
July 26, 2011 at 4:34 am
This should do:
Select *
Into #TempA
From TB_ARTICLE
Where ARTICLE_ID not in (Select ARTICLE_ID from remote_server_name.database_name.schema_name.TB_ARTICLE)
EXEC('USE database_name; set identity_insert TB_ARTICLE on') AT remote_server_name
Insert into remote_server_name.database_name.schema_name.TB_ARTICLE
Select * From #TempA
Hope this helps
Gianluca
July 26, 2011 at 4:15 am
Looks like a good place for replication.
Have you checked that option?
July 26, 2011 at 3:48 am
In SQL Server 2008 you can use the HierarchyId datatype to store tree structures.
AFAIK, MLM is illegal in many countries (including Italy).
Be careful what you do.
July 26, 2011 at 3:46 am
Brandie Tarvin (7/25/2011)
mtillman-921105 (7/25/2011)
July 25, 2011 at 10:48 am
You're right.
I'll stop it here. Would have lots to say, but I'll stop it here. 😉
July 25, 2011 at 10:47 am
Ninja's_RGR'us (7/25/2011)
Gianluca Sartori (7/25/2011)
Ninja's_RGR'us (7/25/2011)
There's just no reason to shutdown the server to take a backup.
... unless you're working with Oracle. :Whistling:
It's called "cold backup" and it's advertised as "the...
July 25, 2011 at 10:32 am
GSquared (7/25/2011)
GilaMonster (7/25/2011)
July 25, 2011 at 10:09 am
Ninja's_RGR'us (7/25/2011)
There's just no reason to shutdown the server to take a backup.
... unless you're working with Oracle. :Whistling:
It's called "cold backup" and it's advertised as "the only consistant backup"....
July 25, 2011 at 9:48 am
I don't think so, unless you're really using SQL Server 2000 (is this the right forum?).
Take a look at these articles and see if they help:
Displaying Sorted Hierarchies[/url]
Hope...
July 22, 2011 at 7:00 am
Nice, thank you.
You could add it to the scripts section, using the contribution center.
July 22, 2011 at 6:52 am
Probably the user that connects to the database is requested to write an object (auditing table) that is outside of his permissions, due to the trigger execution. You could wrap...
July 22, 2011 at 5:09 am
I suspect this is not the right forum: logon triggers are not available in SQL Server 7 or 2000.
However, what is failing in your logon trigger?
July 22, 2011 at 4:26 am
Viewing 15 posts - 2,911 through 2,925 (of 5,394 total)