Viewing 15 posts - 3,961 through 3,975 (of 7,187 total)
To add to what Koen said, 4 uses sysobjects, which, from SQL Server 2005, has only been included for backward compatibility. Some of your statements test for the schema...
July 18, 2013 at 6:48 am
Koen, are you sure about that? You can add a new column with an identity property, but I can't see any way of adding the identity property to an...
July 18, 2013 at 6:29 am
What that means is that rebuilding indexes doesn't change the distribution of data and therefore the ALTER INDEX REBUILD operation itself doesn't make the statistics go out of date. ...
July 18, 2013 at 6:13 am
Lian
Be careful with missing index recommendations. They only suggest indexes that would improve performance on individual queries, not on the workload as a whole.
Adding an included column to an...
July 18, 2013 at 2:15 am
The config file does not (directly) affect the connection string in the child package. The child package inherits the value of a variable from the master package. You...
July 16, 2013 at 1:02 am
belowery (7/15/2013)
david.wright-948385 (7/15/2013)
belowery (7/12/2013)
July 15, 2013 at 8:24 am
The object ID is only unique within each database. Are you sure you're querying the correct database? By the way, sysobjects is only included for backward compatibility. ...
July 15, 2013 at 4:47 am
This isn't going to solve your problem, but it may get you in a position where it's easier to solve it yourself.
My advice is to format your code so that...
July 15, 2013 at 2:36 am
Is your backup running as a job? Does the SQL Server Agent account have access to the target folder?
John
July 12, 2013 at 8:03 am
How often do you ever need to restore from system database backups? If the answer is "not very", I'd only keep the two most recent... provided, of course, that...
July 12, 2013 at 7:50 am
This is a SQL Server forum. There may be someone here who knows MySQL, but you'd probably be better posting your question somewhere else.
John
July 12, 2013 at 5:49 am
Try rebuilding the clustered index on Table1 and updating statistics. You'll probably get 50/50 then. The index on Table1 is fragmented since you inserted the data after creating...
July 12, 2013 at 5:43 am
prakashr.r7 (7/12/2013)
Sorry John, I am not getting you...Could you please make me clear?
Check this out. You can then use the variable to set the ConnectionString property of your connection...
July 12, 2013 at 5:32 am
July 12, 2013 at 4:38 am
One configuration option is to use a parent package variable in each of the packages that is called from your master package.
John
July 11, 2013 at 8:56 am
Viewing 15 posts - 3,961 through 3,975 (of 7,187 total)