Viewing 15 posts - 106 through 120 (of 789 total)
A possibility... on the destination server:
set identity_insert MyMainTable on insert MyMainTable (IdCol, col2, col3...) select IdCol+1000, col2, col3... from SourceServer.MyDB..MyMainTable set identity_insert MyMainTable off
insert MyReferencingTable1 select col1, col2, FKcol+1000.... ...
March 23, 2004 at 3:22 am
Unfortunately you cannot. You must trace to a file and then load it to a table later. You can do the table load manually or through scripts.
March 23, 2004 at 2:38 am
...and best to make sure those students haven't set up anythings else in model - views, stored procedures, functions, etc, and especially fixed database roles for themselves.
March 23, 2004 at 2:15 am
How are you disabling the jobs? On the off chance that you're using ad hoc direct updates rather than EM or sp_update_job, then SQL Agent's cache is not refreshed, and...
March 23, 2004 at 2:05 am
What are we going to do with all this proccache information data we've collected. Not much use unless we collect some sort of timestamp too is it?
In a real situation...
March 23, 2004 at 1:51 am
Thanks James. Good article.
There is too another handy reason (for dba admin stuff) for creating "sp_" stored procedures in master.
Say you're working in database X and want to run...
March 21, 2004 at 8:10 pm
The correct answer is in line with what BOL says, but one would think that if I ran the code below I would get "master proc" displayed. But I get "pubs...
March 21, 2004 at 5:18 pm
Actually the "correct" answer is the closest to being correct (which is why I chose it). However, all the initial posts in this thread are right... it is indeed RSReportServer.config...
March 19, 2004 at 9:43 pm
Estuardo,
You should be able to do what you want to do without a router, but it's not something I would recommend.... either a router (with most ports close or in...
March 15, 2004 at 5:22 pm
Estuardo,
Do you have a router (with port forwarding) connnected to the Internet, or is your SQL Server (81.193.38.224) connected directly to the net?
March 15, 2004 at 12:57 pm
Let's not forget our "other DBMS" colleagues.
With "anOther DBMS", integer is an alias for a particular definition of numeric, so Rob was maybe quite justifiably stumped.
March 11, 2004 at 7:41 pm
I would imagine that nulling the column will result in heaps of logging for rollback purposes.
I could be wrong.... wouldn't be the first time.
If other...
March 11, 2004 at 7:29 pm
That varchar column isn't all null is it?
March 9, 2004 at 12:49 pm
A table-based UDF is often given the tag "parameterised view". Check them out in BOL.
March 9, 2004 at 2:28 am
Are you sure Mtr_Func is not one of the non-comparable data types? I've tried it on northwind..employees and the result is different if I remove a "normal" data type,...
March 9, 2004 at 2:15 am
Viewing 15 posts - 106 through 120 (of 789 total)