Viewing 15 posts - 16 through 30 (of 249 total)
Are you by any chance using GUIDs as ordered primary keys? This is causing similar issues for us in a legacy system.
January 31, 2013 at 10:31 am
SSIS would handle this very nicely and be easily repeatable.
January 13, 2013 at 7:23 pm
Easiest way to determine what else will need to be changed is to right-click the table in SSMS and click View Dependencies. This will tell you everything that references...
January 10, 2013 at 11:23 am
If you would post a sample of the csv file, and a create table script, I will see if I can figure it out. Sounds like a setting issue...
January 10, 2013 at 11:16 am
OK, just so everyone understands, this is not a SQL problem. The .NET Framework has a special data type for SQL databases in System.Data.SqlTypes.SqlDateTime. For some really silly...
January 9, 2013 at 8:13 pm
Different dev teams I guess. Not very efficient.
January 9, 2013 at 3:00 pm
Which transformation and destination components are you using?
January 9, 2013 at 1:03 pm
I use .NET 4.0 and they did not update the date range limits in the libraries to match the new range in SQL Sever. I will have to wait...
January 9, 2013 at 12:56 pm
Definately time the index rebuilds for off peak hours to minimize impact to the users.
January 9, 2013 at 12:42 pm
You can always place the database in Read-only mode after the restore/upgrade. Unless I am mistaken, that is all that option does anyway.
December 6, 2012 at 11:02 pm
Don't use that option. Restore with recovery so that SQL 2008 can run the various stored procedures that upgrade the database structure to the new format.
Then change the database...
December 6, 2012 at 2:55 pm
I agree with PaulB.
When a flat file is presented, the layout/structure is typically well known. That is part of the initial discovery.
If there are freeform notes or something, I...
November 20, 2012 at 12:03 pm
In my experience, SSMS does not script a drop and recreate of a table unless you insert the new column somewhere other than at the end. To append a...
November 20, 2012 at 11:47 am
Books online list the following requirements/limitations for indexed views:
The ANSI_NULLS and QUOTED_IDENTIFIER options must have been set to ON when the CREATE VIEW statement was executed. The OBJECTPROPERTY function reports...
November 20, 2012 at 11:27 am
Please provide detailed information including scripts to create and populate sample tables so we can see exactly what you are trying to accomplish.
Reading http://www.sqlservercentral.com/articles/Best+Practices/61537/ is a good start.
November 20, 2012 at 10:22 am
Viewing 15 posts - 16 through 30 (of 249 total)