Viewing 15 posts - 136 through 150 (of 226 total)
Cant be possible in a single query in SQL 2000, you have to use loop or a temp table.
October 11, 2005 at 8:53 pm
I am a big fan of Bill Gates. With limited knowledge of his business style. I feel he is doing a great job. Go Bill !!!!!
September 19, 2005 at 4:30 pm
You can custom write a proc or use sp_depend "<Table Name>".
Points to remeber :
Cross database joins.
Dynamic Query.
* is the column list.
If you have written query in Jobs.
Written queries in...
September 19, 2005 at 4:26 pm
Be very careful if you have hard-coded references to Server. Transferring them will not change the server name. Things can be ugly if you execute them
September 15, 2005 at 6:30 pm
I mean the table which need to push to all the servers
September 15, 2005 at 3:19 pm
I feel you can manage that in several ways. What is the size of you table and are the same in same location (I meant how good is your network...
September 15, 2005 at 3:11 pm
Thanks Steve for the update. if we get SQL 2005 in year 2005. I will be happy and 3 cheers to MICROSOFT
September 14, 2005 at 7:08 pm
check the owner of the object
September 14, 2005 at 6:57 pm
by default on default instance the port is 1433. If you want to find the port on multiple instance. Run the below query
DECLARE @key VARCHAR(100)
DECLARE @PortNumber VARCHAR(20)
SET @key...
September 14, 2005 at 6:54 pm
I learn every hour
I change the server setting to send as a pure update instead of INSERT/DELETE pair but I want to learn...
September 13, 2005 at 8:57 pm
Had this problem for one of my client. Spent 3 days to determine the problem. There can be several reasons for this error. Let us know whether this problem occurs ever time...
September 13, 2005 at 7:25 pm
September 13, 2005 at 5:39 pm
Viewing 15 posts - 136 through 150 (of 226 total)