Viewing 15 posts - 16 through 30 (of 45 total)
I discovered that IIf statements always evaluate all paths, even if a path is not going to be executed. So even though I check to see if a field...
September 2, 2008 at 10:18 am
Well, one problem with your code is that if Item is not present in the array, it will continue past the end of the array. Then you would get...
February 20, 2008 at 10:23 am
Thanks Matt -- I was able to create an ODBC data source using your excellent instructions.
However ... when I try to import it into SQL Server using the NET ODBC...
December 14, 2007 at 12:06 pm
Scott: if I open it in notepad it looks kind of like this:
CDSCODE C ...
December 14, 2007 at 10:25 am
Well ... Here are my only choices:
Net Framework Data Provider for Odbc
Net Framework Data Provider for Oracle
Net Framework Data Provider for SqlServer
Flat File Source
MediaCatalogDB OLE DB Provider
MediaCatalogMergedDB OLE DB Provider
MediaCatalogWebDB...
December 14, 2007 at 10:19 am
Yes, this seems to work Greg! Thanks very much.
Thanks for the update on the trigger, Tommy, but Greg's solution seems to be easier :)!
December 12, 2007 at 2:52 pm
OK, when I try to run this, it's telling me: Must declare the scalar variable "@data".
What is "@data" supposed to be? (Remember, I am really ignorant here!)
December 12, 2007 at 1:39 pm
Oops -- dumb error! I was trying to update a table that had nvarchar(4000) instead of the one with ntext. It actually does...
May 22, 2007 at 2:10 pm
I did try nvarchar(max), and still it would only allow 4000 characters. That made me assume that the "max" was 4000.
I will check books online and see what they say.
May 22, 2007 at 10:18 am
Thank you -- the information in that article is exactly what I need.
Cynthia
January 8, 2007 at 12:59 pm
OK, you may be right that the backup order was wrong, because when I start over, doing a full backup, and two differential backups using INIT for the differential backups,...
September 18, 2006 at 1:56 pm
I discovered the problem. In my differential backup
BACKUP DATABASE AdventureWorks
TO DISK='C:\SQL2005_Backups\AutoBackups\AdventureWorksDiff.bak'
WITH DIFFERENTIAL, INIT
I should not be using "INIT".
I thought that since you just use the last differential backup file, it...
September 13, 2006 at 1:50 pm
So ... I should do WITH RECOVERY for both full and differential?
I just tried it -- now I get this error:
Msg 3117, Level 16, State 1, Line...
September 13, 2006 at 1:00 pm
I discovered the problem -- actually, someone on the MSDN forums enlightened me to it.
Apparently, the code does not get compiled until the report is deployed. I had not deployed...
September 13, 2006 at 10:46 am
I already tried that -- that's how I originally had it, and I added the Public and Shared to see if it made a difference (it didn't).
September 12, 2006 at 4:36 pm
Viewing 15 posts - 16 through 30 (of 45 total)