Viewing 12 posts - 16 through 27 (of 27 total)
Unfortunately you can not create a synonym for a database, a schema yes, but not the database itself.
May 21, 2010 at 8:18 am
It had to be unsafe because of the System.Windows.Forms and we can't do the conversion outside of SQL Server.
Yesterday I spent the day writing our own RTFtoText utility in...
March 9, 2010 at 4:48 am
We are migrating data from an Informix database and in it there is RTF text. We are using SSIS to move the data to SQL Server staging database. Then we...
February 21, 2010 at 10:20 am
I have a sql script which does the following. That's all you need. Let me know if this helps
USE [DMZ]
GO
--set the database trustworthy
ALTER DATABASE DMZ SET TRUSTWORTHY ON
GO
--if the clr...
February 15, 2010 at 6:15 pm
I had a similar problem because I was using a RichTextBox within my code. In order to resolve my problem I did the following;
USE [DBNAME]
GO
--set the database trustworthy
ALTER DATABASE DBNAME...
February 14, 2010 at 5:48 am
Problem was solved by installing SQL Server SP1 on the one system. The was the difference between the working systems.
February 11, 2010 at 4:05 pm
I'm logged into the system as an administrator. The account I'm logged into SSMS as is a sysadmin account. And I went to the server where the files exist and...
December 13, 2009 at 1:26 pm
Correct. These 3 run in parallel. And all of these tasks have maximumerrorcount set to 0. When I run it from VS IDE everything run's fine. I get green for...
November 2, 2009 at 8:26 pm
Thanks for all the suggestions. I found the problem. I though it was this code I put in but it was code already in the SPL up higher in the...
October 7, 2009 at 3:35 pm
I changed the cache from FULL to partial and that resolved it.
Can anyone explain this?
June 28, 2009 at 7:40 am
I figured out how to do this. But now all my data is going to the error output.
I'm only doing 10 rows as a test and I looked at my...
June 27, 2009 at 12:15 pm
The only thing in common between this person and patient table is the PersonUid
The externalID and medicalRecordnumber are in the patient table
The name, ssn, addressGuid, Genderguid, MaritialStausGuid are all in...
June 27, 2009 at 10:28 am
Viewing 12 posts - 16 through 27 (of 27 total)