Viewing 15 posts - 316 through 330 (of 576 total)
Are you talking about Microsoft Reporting Services?
October 26, 2004 at 7:57 pm
You will have to test it yourself in Query Analyzer by producing the plans and studying them.
October 26, 2004 at 6:23 pm
The NOT FOR REPLICATION property also applies to Triggers!
October 25, 2004 at 6:17 pm
The ISNULL Function is simply replacing all NULL host_id with the GETDATE() Function. If you do not want to do that then just remove the ISNULL Function.
Have I understood, or...
October 25, 2004 at 6:12 pm
How have you ascertained that the table is been locked up? Are you talking about Table Locks?
October 24, 2004 at 9:09 pm
Try this,
DECLARE @Time NVARCHAR(20)
DECLARE @Minutes INT
DECLARE @NewTime NVARCHAR(20)
DECLARE @HoursToMinutes INT
DECLARE @Hours INT
DECLARE @Position INT
SET @Time = '211:34'
SET @Position = PATINDEX('%:%', @Time)
SET @Hours = SUBSTRING(@Time, 0, @Position)
SET @Minutes = RIGHT(@Time, 2)
SET...
October 24, 2004 at 7:10 pm
Yes. I do something similar here. Give it a go, it should work.
October 21, 2004 at 12:29 am
In Transactional Replication, the Subscription Database becomes a "Logically read only" Database. Therefore, because there will be no Inserts, Updates or Deletes happenning at the Subscriber, the Unique Constraint is...
October 20, 2004 at 10:11 pm
Natively(SQL Server) speaking, I don't think that is possible. The closest thing you can do is use the PWDENCRYPT() function to compare passwords against.
October 20, 2004 at 10:03 pm
Try uninstalling SQL 7.0 first and then reinsatll .Net 2003.
October 20, 2004 at 4:59 pm
The IsEmpty Function in SQL Server is for Analysis Server only!
Show us your code and we can go from there to assist you.
October 18, 2004 at 5:14 pm
You can't directly replicate any sort of data from Exchange to SQL.
You could probably look at exporting the data from Exchange to a csv file and then create a DTS...
October 17, 2004 at 5:35 pm
Do both SQL Servers have the same service pack?
October 14, 2004 at 10:56 pm
Sounds like the entire replication process has got itself into a knot. You may have to drop replication and set it up again from scratch without doing the snapshot!
October 14, 2004 at 5:04 pm
Viewing 15 posts - 316 through 330 (of 576 total)