Viewing 15 posts - 886 through 900 (of 1,166 total)
You can create SSIS packages on Main office server or create linked server ...
Replication is one option ...but I think Express Edtn will not support replication...
December 19, 2006 at 1:22 am
If you are doing merge replication then it will add guid column but not in transactional replication...
I think you can do bi-directional transactional replication too...
http://www.microsoft.com/technet/prodtechnol/sql/2000/maintain/mergperf.mspx
http://www.databasejournal.com/features/mssql/article.php/1438231
http://support.microsoft.com/kb/820675
http://msdn2.microsoft.com/en-us/library/ms151855.aspx
December 19, 2006 at 1:18 am
Are you talking about the ITW option in Query Analyser in Query tab?
You should have some query in your QA otherwise it will be greyed out (disabled)...
December 19, 2006 at 1:08 am
Try specifying network protocols while connecting...
To connect using named pipes you have to "np:" for tcp/ip you should "tcp:"
In Client Networ Utility check enabled protocols and try changing the protocol...
December 19, 2006 at 1:04 am
I don't think you can prevent some one using the QA but if they are using any perticular login you can deny that login...
Application roles may help you in this...
December 19, 2006 at 12:53 am
I don't agree with you...
Single user mode always works as long as you follow the directions...
I have done backup/restore many times using GUI and never had any problems...
December 19, 2006 at 12:39 am
Best place to find realtime issues/solutions will be sql forums....
Read the forums as much as you can...
http://www.databasejournal.com/features/mssql/article.php/1547551
http://www.databasejournal.com/features/mssql/article.php/1468971
December 19, 2006 at 12:32 am
Does SQL server service account has the access to the other system where you trying to run the batch file using psexec?
December 18, 2006 at 4:17 pm
You make use of the following scripts with SP_MSFOREACHTABLE procedure to do it all at once....
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1541
http://www.sqlservercentral.com/scripts/viewscript.asp?scriptid=1526
December 18, 2006 at 4:06 pm
Try to delete after disabling the FK...
CREATE TABLE cnst_example
(id INT NOT NULL,
name VARCHAR(10) NOT NULL,
salary MONEY NOT NULL
CONSTRAINT salary_cap CHECK (salary < 100000)
)
-- Valid inserts
INSERT INTO...
December 18, 2006 at 3:50 pm
From MSDN thread..
What I have done is that When this window Authentication Mode appears i starts the sql server 2005 service.Then clcik the next button.That's all we have to do.
I have...
December 18, 2006 at 3:39 pm
Some other connection might has got the connection to that database...
Try in Query window (Query Analyzer).. before doing put the db in multi user mode...
Ex:
1. ALTER DATABASE Northwind SET SINGLE_USER...
December 18, 2006 at 3:31 pm
Your coulumn name might have special characters or spaces in it...
You can log errors to an output to get more details about this error.
How to enable replication agents...
December 18, 2006 at 3:26 pm
Is parallalism enabled? If it is try the same after disabling the parallalism using MAXDOP option..
You may need to call PSS...
Are any stack dump files in sql error logs?
December 18, 2006 at 1:11 pm
I didn't get your question...
What OSQL script is going to do??
Is it creating the db or something else...
You can create a batch file using osql script and call the...
December 18, 2006 at 12:59 pm
Viewing 15 posts - 886 through 900 (of 1,166 total)