Viewing 15 posts - 166 through 180 (of 805 total)
Take a walk on the wild side and do it. If it bails, sit back and whistle like you know nothing....:cool:
August 12, 2008 at 2:18 pm
While the two suggestions are spot on, you do not need a script task to modify the variable value. Look at variable expressions (Highlight variable, F4). You can make the...
August 12, 2008 at 2:17 pm
It's fairly easy to walk down the package.
See http://msdn.microsoft.com/en-us/library/ms135946.aspx as a starting point.
Here are many tips:
http://mahiways.spaces.live.com/blog/cns!6A1F270FEA8CDD8C!142.entry
August 12, 2008 at 2:15 pm
sorry, remove count(Null) and just have null.
Select null from table.
August 12, 2008 at 2:10 pm
SQL Command would work but is slow if you on a large data set.
Why not push them into a temp table and do a join. Will be far faster on...
August 12, 2008 at 2:09 pm
Easiest way would be to use a SQL task and run a check in it.
If not Exists(Select count(Null) From MyTable)
RaisError("Table is empty!", 16, 1)
August 12, 2008 at 12:55 pm
All SPs and hotfixes will only patch unpatched "parts"
August 12, 2008 at 12:53 pm
Very weird, does not happen to me.
If you try with a different proc? Or cut down your existing proc for the purpose of testing and try see what is happening....
August 12, 2008 at 12:50 pm
It is a lot easier than Jamie's. It's a lot simpler as well. One of the advantages of his is the row counts. But ultimately, they do the same thing....
August 12, 2008 at 9:59 am
There is nothing wrong with doing that. Slow, but ok. What is your inner loop based on? Which loop seems to be endless. What defines endless? How many rows is...
August 12, 2008 at 9:54 am
Ed Phillips (8/12/2008)
Two of our clients have merged.
To make a Super Client:hehe:
Sorry, it's late and not enough coffee....
You could write a package to do this. You would have a...
August 12, 2008 at 9:49 am
When it's trying to run, no blocks on the DB for your SPID?
August 12, 2008 at 9:17 am
The logging to Text or SQL (Not the version jamie is talking about) is quite simple.
Right click in the work space and select Logging.
1) Select a provider (Use text for...
August 12, 2008 at 8:48 am
And you sure the connection manager is ok? Test Connection button is ok?
Are there any expressions on the connection manager that could be changing the server name at runtime?
If you...
August 12, 2008 at 8:42 am
Viewing 15 posts - 166 through 180 (of 805 total)