Viewing 15 posts - 1,141 through 1,155 (of 1,220 total)
The functions you are using (object_name and Objectproperty) always look in the current database. They are not aware of the database name in the FROM. You could try the following:
declare...
November 18, 2004 at 6:53 pm
Have you tried tools like Remote Desktop/Terminal Service, PC Anywhere, VNC ?
Using tools like EM tend to require a fair bit of network traffic because EM checks just about everything...
November 14, 2004 at 7:11 pm
Don't even think about changing syscolumns UNLESS you need practice at restoring your database. Yes, this has the column order but there is no doco on how SQL Server is...
November 11, 2004 at 10:33 pm
Why don't you create an article that has a vertical filter that selects just those 5 columns ?
November 8, 2004 at 7:05 pm
Yes the conflict tables are system tables but you are able to create triggers on them. You are expected to be allowed to perform most things on these tables otherwise...
November 7, 2004 at 3:27 pm
I can't think of options that require no code. You could create a trigger on each conflict table that raises an error that you either log to the event log...
November 4, 2004 at 8:51 pm
create table #devices (DeviceName varchar (100), PhysName Varchar (100), Description varchar (100), status int, cntrltype int, size int)
Insert into #devices
Exec sp_helpdevice
select * from #devices
Check the lengths of the columns in...
November 3, 2004 at 8:32 pm
Have a look at sp_helpdevice. If run with no parameters it will return a recordset containing all devices. A status of 16 is a backup device.
November 3, 2004 at 7:39 pm
You say that the "DB2 rights are correct" - I assume from this that they are correct for your windows account (i.e. you logon to the server as yourself and...
November 3, 2004 at 7:29 pm
Not sure that I understand the timing of your events - I assume that you mean that the next transaction log backup is scheduled for 1PM but the server dies during...
October 26, 2004 at 10:12 pm
Have you re-initialised the subscription ? I don't think the change you made will have any impact to existing subscriptions. This will most likely result in all data being sent...
October 25, 2004 at 9:53 pm
No they do not have to be the same.
You can change the table name if you are using transactional replication.
You may elect to publish some of the columns of...
October 25, 2004 at 9:37 pm
You can join to a UDF that returns a table. You might need to adjust your UDF to suit - I assume that the parameter for this is currently the...
October 14, 2004 at 9:49 pm
The REMOTE hint has nothing to do with collations. It tells the query optimiser to let the remote server process as much of the query as it can...this should mean...
October 14, 2004 at 5:57 pm
Viewing 15 posts - 1,141 through 1,155 (of 1,220 total)