Viewing 15 posts - 256 through 270 (of 272 total)
Are you trying to distinguish between system tables and tables added by someone else?
Unless you or someone else creates a table in msdb, they are all system tables. Unless...
February 9, 2010 at 9:27 am
If you right-click on a table in the object explorer and select "Edit Top 200 Rows", you can get a usable query designer that will execute. You can add,...
February 9, 2010 at 9:13 am
Your dynamic SQL creates a new session that knows nothing about the delcared variables you set in your "normal" session. You will need to declare and set you variables...
February 9, 2010 at 8:15 am
As Roy indicates, you can delete your child records and then delete the parant records. If the relationships are cascading, you can drop the parents and the children will...
February 9, 2010 at 8:01 am
It might be faster to collect the last 7 days worth of data into a new table, drop the original, then rename the new table.
February 8, 2010 at 12:07 pm
If the only deleting done to the published articles is to purge old data, then set your "Do Not Replication DELETE Statements" option under the Statement Delivery section of Article...
February 4, 2010 at 12:19 pm
Have you validated the subscriptions? Are you doing any filtering?
If the subscription is out of sync with the publisher, you will need to reinitialize.
You can reinitialize without doing a...
February 4, 2010 at 12:05 pm
Have you checked for blocking processes? Also, are you using any triggers on the affected tables?
January 27, 2010 at 8:02 am
This can be caused by partially removed publications that leave metadata behind in the distribution sys tables. You can search for removed publications in the MSpublications, MSsnapshot_agents, MSpublisher_databases and...
January 20, 2010 at 2:40 pm
reflorio (10/2/2009)
October 2, 2009 at 2:38 pm
With the constraints back on, data inserts violating the constraints will be rejected, but the "bad" data loaded thru SSIS with Check Constraints set to FALSE will remain in the...
October 2, 2009 at 8:46 am
I'm not aware of any way to do this in SSIS.
Sharepoint does store documents in SS tables, but you would have to know how to re-assemple the data in the...
September 29, 2009 at 9:26 am
I would first make sure you are using the connection you think you're using. Then make sure that connection is pointing where you think it's pointing.
September 28, 2009 at 11:28 am
Have you tried outputting to a raw file destination? I believe this would do the trick, but I have not tried writing binary data.
September 26, 2009 at 11:47 am
How are you scoping the variable you are passing?
I believe it should be scoped to the outer ForEach container or to the package.
September 25, 2009 at 7:29 am
Viewing 15 posts - 256 through 270 (of 272 total)