Viewing 15 posts - 61 through 75 (of 77 total)
If you have a non-central site down and intend to perform disaster recovery and are doing snapshot replication, maybe the following will work.
Set us a subscriber pull option to the...
March 15, 2004 at 1:10 pm
Distributed transactions use four part names.
Don't know if this will work, but give it a try.
SELECT *
FROM DeptSQLSrvr.Northwind.dbo.Employees
Select *
From servername.databasename.ownername.tablename
I believe ommision of servername will default to local server.
GaryA
March 15, 2004 at 1:01 pm
What happens when you try to retrieve the data without CF?
GaryA
March 15, 2004 at 12:46 pm
Too the best of my knowledge, SQL Server 2000 client tools work with SQL Server 7.
GaryA
March 15, 2004 at 12:39 pm
For us newbies, please describe the problem you are encountering.
TIA
GaryA
March 15, 2004 at 12:28 pm
IMO
First, ideally each table column should explictly define NULL or NOT NULL nullability attribute.
Second, queries may have to deal with several servers who nullability attributes are not all defined the...
March 15, 2004 at 11:33 am
In regards to off-site storage of backups. I suppose the backup files could be encrypted prior to sending offsite.
One can password protect backups. While this would not prevent your data...
March 10, 2004 at 11:41 am
|
Where you want to get rid of backup history not needed, the following is an alternate solution.
USE msdb
EXEC sp_delete_backuphistory '12/31/1999'
This would delete the records older...
March 10, 2004 at 11:23 am
Books On Line (BOL) says:
Provides information about current Microsoft® SQL Server™ users and processes. The information returned can be filtered to return only those processes that are not idle.
Please...
March 10, 2004 at 11:12 am
Additional thoughts are:
Since there is a one to one relationship between tables, it seems to me that to use an identity column (for a key) implies that the same identity...
March 5, 2004 at 9:31 pm
Jack seems right on to me.
My take is as follows:
It's SQL Server which needs to have read/write access to the files holding the database(s). It's SQL Server which needs to run...
March 5, 2004 at 9:07 pm
It seems to me the following are issues in determing the answer to your question.
I call using two or more columns to make up a primary key a "composite key".
First,...
March 5, 2004 at 5:24 pm
I am curious as to why you find it necessary to stop and start SQL Server every night?
GaryA
March 4, 2004 at 3:42 pm
I am a newbie, but based on what I know the following seems to be true.
Short Answer. If your SQL Server does not need access to other machines (to store...
March 4, 2004 at 3:25 pm
Viewing 15 posts - 61 through 75 (of 77 total)